1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-05-18 05:23:22 -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 3cc511182a
commit 7bd3e81713

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'