prog8/examples/test.p8

17 lines
232 B
Plaintext
Raw Normal View History

2024-06-01 13:03:01 +00:00
%import textio
%zeropage basicsafe
%option no_sysinit
main {
2024-08-24 12:34:23 +00:00
sub start() {
byte @shared x
word @shared w
2024-09-08 19:49:13 +00:00
if x==0 or x==1 or x==2
x++
2024-09-08 19:49:13 +00:00
if w==0 or w==1 or w==2
x++
2024-07-21 11:35:28 +00:00
}
}