prog8/examples/test.p8
2019-07-21 23:50:13 +02:00

18 lines
214 B
Lua

%import c64utils
%import c64flt
%zeropage basicsafe
%option enable_floats
~ main {
sub start() {
if_z goto start
if_pos goto start
if_cc goto start
if_nz goto start
}
}