All checks were successful
Validate the build / validate-build (push) Successful in 32s
13 lines
142 B
NASM
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
|