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 32e252e536
6 changed files with 61 additions and 3 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;