Skip to content

Commit

Permalink
Fix labels for instructions 0x21 and 0x24
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Laurie committed Feb 4, 2013
1 parent be3969e commit 8ea0405
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions marc4dasm.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@
0x1E:'SWI',
0x1F:'OUT',
0x20:'TABLE',
0x21:'---',
0x21:'TABLE',
0x22:'>R',
0x23:'I',
0x24:'---',
0x24:'EXIT',
0x25:'EXIT',
0x26:'SWAP',
0x27:'OVER',
Expand Down Expand Up @@ -477,7 +477,7 @@ def print_with_comment(address, data, ins, arg, comment):

# code should never reach here!
p += 1
print_with_comment(code_add, '???', ins, 'UNKNOWN')
print_with_comment(code_add, '???', ins, arg, 'UNKNOWN')

# check CRC (only we can't because we don't know algorithm!)
crc0= ord(data[p])
Expand Down

0 comments on commit 8ea0405

Please sign in to comment.