1
0
Fork 0
mirror of https://github.com/notwa/lips synced 2024-05-03 01:53:23 -07:00

ignore highest bit of .org directive

are you *really* gonna be assembling files over 2GiB?
This commit is contained in:
Connor Olding 2015-11-22 13:30:11 -08:00
parent e31b73d34e
commit e15d699ac3

View File

@ -1088,7 +1088,7 @@ function Dumper:add_directive(name, a, b)
t.kind = 'goto'
t.addr = a
table.insert(self.commands, t)
self.pos = a
self.pos = a % 0x80000000
self:advance(0)
elseif name == 'ALIGN' then
t.kind = 'align'