Skip to content

Commit

Permalink
Fix data references to RAM
Browse files Browse the repository at this point in the history
  • Loading branch information
leoetlino committed Jul 14, 2021
1 parent e484f00 commit 3c8d3d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcdsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def parse(self, res, byte1, byte2):
val |= 0xFF00
res.type = o_mem
res.dtype = dt_byte
res.addr = val
res.addr = 0x10000 | val
else:
raise ValueError("unhandled type: %04X" % type)

Expand Down

0 comments on commit 3c8d3d7

Please sign in to comment.