fix gbz80disasm for multi-byte opcode incrementation

hg-commit-id: ad1ae67c5991
This commit is contained in:
Bryan Bishop 2012-01-10 23:36:24 -06:00
parent 5105065c72
commit 811529f6a4

View file

@ -638,8 +638,8 @@ def output_bank_opcodes(original_offset, max_byte_count=0x4000):
output += spacing + opstr #+ " ; " + hex(offset)
output += "\n"
current_byte_number += 1
offset += 1
current_byte_number += 2
offset += 2
elif maybe_byte in opt_table.keys():
op_code = opt_table[maybe_byte]
op_code_type = op_code[1]