Bugfix int range in sasm, create Makefile, portability fixes

This commit is contained in:
slederer 2024-10-06 22:55:35 +02:00
parent 8c84a4b877
commit a35b8eaf60
8 changed files with 77 additions and 6 deletions

View file

@ -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;