prog8/examples/test.p8

18 lines
214 B
Plaintext
Raw Normal View History

2019-07-01 21:41:30 +00:00
%import c64utils
2019-07-15 01:57:51 +00:00
%import c64flt
2019-07-01 21:41:30 +00:00
%zeropage basicsafe
2019-07-15 01:57:51 +00:00
%option enable_floats
2019-03-29 01:13:28 +00:00
~ main {
sub start() {
2019-07-21 10:00:22 +00:00
if_z goto start
if_pos goto start
if_cc goto start
if_nz goto start
2019-07-17 23:31:12 +00:00
}
}