Support named identifiers on the right side

This commit is contained in:
2025-05-12 00:06:02 +02:00
parent 707f983fe9
commit d85183c7a6
4 changed files with 725 additions and 592 deletions

View File

@@ -1,14 +1,11 @@
program
proc _main(x: Word)
var loca0: Word
loca4: Word
proc _main(x: Word, y: Word)
begin
loca0 := 0x0a2c3061;
loca4 := x;
_write_out(@loca4, 4)
_write_s(@x, 4);
_write_s(@y, 4)
end
begin
_main()
_main(0x0a2c3061, 0x0a2c3062)
end.