Bugfix int range in sasm, create Makefile, portability fixes
This commit is contained in:
parent
8c84a4b877
commit
a35b8eaf60
8 changed files with 77 additions and 6 deletions
|
|
@ -1185,7 +1185,10 @@ begin
|
|||
intValue := getSymbolValue(value)
|
||||
else
|
||||
intValue := convertNumber(value);
|
||||
emitWord(intValue + current^.offset);
|
||||
|
||||
if intValue <> Unresolved then
|
||||
intValue := intValue + current^.offset;
|
||||
emitWord(intValue);
|
||||
|
||||
current := current^.prev;
|
||||
end;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue