oas/tests/input/symbols.asm
2025-04-16 13:46:19 +02:00

13 lines
142 B
NASM

.import test
.export test
test:
call test
.import more
.export more
more:
call more
.import other
.export other
other:
call other