mirror of
https://github.com/notwa/mm
synced 2025-02-05 05:23:22 -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.kind = 'goto'
|
||||||
t.addr = a
|
t.addr = a
|
||||||
table.insert(self.commands, t)
|
table.insert(self.commands, t)
|
||||||
self.pos = a
|
self.pos = a % 0x80000000
|
||||||
self:advance(0)
|
self:advance(0)
|
||||||
elseif name == 'ALIGN' then
|
elseif name == 'ALIGN' then
|
||||||
t.kind = 'align'
|
t.kind = 'align'
|
||||||
|
|
Loading…
Add table
Reference in a new issue