mirror of
https://github.com/irmen/prog8.git
synced 2024-11-03 13:07:54 +00:00
14 lines
308 B
Lua
14 lines
308 B
Lua
%import textio
|
|
main {
|
|
str myBar = "main.bar"
|
|
;foo_bar:
|
|
; %asminclude "foo_bar.asm" ; FIXME: 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"
|
|
}
|
|
}
|