mirror of
https://github.com/notwa/lips
synced 2024-11-14 10:09:03 -08:00
don't strip 0x80 prefix from .ORG addresses
the rest of the code seems to handle this fine, since setting options.offset was bypassing it anyway
This commit is contained in:
parent
0b5331ff5c
commit
54f28dc333
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ function Dumper:add_directive(fn, line, name, a, b)
|
|||
t.kind = 'goto'
|
||||
t.addr = a
|
||||
insert(self.commands, t)
|
||||
self.pos = a % 0x80000000
|
||||
self.pos = a
|
||||
self:advance(0)
|
||||
elseif name == 'ALIGN' then
|
||||
t.kind = 'ahead'
|
||||
|
|
Loading…
Reference in a new issue