Add symbols tests

This commit is contained in:
2025-04-08 20:38:08 +02:00
parent b514f5d78b
commit ac45c1ea84
3 changed files with 98 additions and 3 deletions

12
tests/input/symbols.asm Normal file
View File

@ -0,0 +1,12 @@
.import test
.export test
test:
call test
.import more
.export more
more:
call more
.import other
.export other
other:
call other