mirror of
https://github.com/irmen/prog8.git
synced 2024-11-26 11:49:22 +00:00
19 lines
266 B
Lua
19 lines
266 B
Lua
; EXAMPLE external command source code
|
|
|
|
%launcher none
|
|
%option no_sysinit
|
|
%zeropage basicsafe
|
|
%encoding iso
|
|
%import textio
|
|
%address $4000
|
|
|
|
|
|
main $4030 {
|
|
%option force_output
|
|
|
|
sub start() {
|
|
txt.print("external command\n")
|
|
sys.exit(0)
|
|
}
|
|
}
|