mirror of
https://github.com/notwa/mm
synced 2024-11-05 01:29:03 -08:00
ignore highest bit of .org directive
are you *really* gonna be assembling files over 2GiB?
This commit is contained in:
parent
3cc511182a
commit
7bd3e81713
1 changed files with 1 additions and 1 deletions
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue