From 706ae9238d153ca924c18f3281b0e72798215c50 Mon Sep 17 00:00:00 2001 From: Maurizio Porrato Date: Wed, 22 Jan 2020 22:24:28 +0000 Subject: [PATCH] Fix typos in opcode names --- asm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/asm.py b/asm.py index 71ca018..729bcd4 100755 --- a/asm.py +++ b/asm.py @@ -16,8 +16,8 @@ OPCODES = { 'MLI': (0x05, None), 'DIV': (0x06, None), 'DVI': (0x07, None), 'MOD': (0x08, None), 'MDI': (0x09, None), 'AND': (0x0a, None), 'BOR': (0x0b, None), 'XOR': (0x0c, None), 'SHR': (0x0d, None), 'ASR': (0x0e, None), 'SHL': (0x0f, None), 'IFB': (0x10, None), - 'IFC': (0x11, None), 'IFE': (0x12, None), 'IFN': (0x13, None), 'ING': (0x14, None), - 'INA': (0x15, None), 'INL': (0x16, None), 'INU': (0x17, None), 'ADX': (0x1a, None), + 'IFC': (0x11, None), 'IFE': (0x12, None), 'IFN': (0x13, None), 'IFG': (0x14, None), + 'IFA': (0x15, None), 'IFL': (0x16, None), 'IFU': (0x17, None), 'ADX': (0x1a, None), 'SBX': (0x1b, None), 'STI': (0x1e, None), 'STD': (0x1f, None), 'JSR': (0x00, 0x01), 'INT': (0x00, 0x08), 'IAG': (0x00, 0x09), 'IAS': (0x00, 0x0a),