prog8/compiler/test/fixtures/asmIncludeFromSameFolder.p8
Irmen de Jong 502bf90007 comments
2021-10-19 01:12:28 +02:00

14 lines
307 B
Lua

%import textio
main {
str myBar = "main.bar"
;foo_bar:
; %asminclude "foo_bar.asm" ; TODO: should be accessible from inside start() but give assembler error. See github issue #62
sub start() {
txt.print(myBar)
txt.print(&foo_bar)
return
foo_bar:
%asminclude "foo_bar.asm"
}
}