gbz80disasm: only track rom addresses for data

original-commit-id: 3a1f843e783a7a654ccd7e72f5e3fa4a40ea4009
This commit is contained in:
yenatch
2013-06-28 00:10:38 -04:00
parent 117c433dc2
commit dbaaef11fb

View File

@@ -603,7 +603,9 @@ def get_local_address(address):
bank = address / 0x4000
return (address & 0x3fff) + 0x4000 * bool(bank)
def get_global_address(address, bank):
return (address & 0x3fff) + 0x4000 * bank
if address < 0x8000:
return (address & 0x3fff) + 0x4000 * bank
return None
def output_bank_opcodes(original_offset, max_byte_count=0x4000, include_last_address=True, stop_at=[], debug = False):
#fs = current_address