prog8/examples/test.p8

38 lines
659 B
Plaintext
Raw Normal View History

%import textio
%option no_sysinit
2024-03-01 18:45:16 +00:00
%zeropage basicsafe
main {
sub rrrr() -> ubyte {
cx16.r0L++
return cx16.r0L
}
2024-03-01 21:43:31 +00:00
sub start() {
cx16.r0L = rrrr() >= 128
; ubyte[] flakes = [1,2,3]
;
; ubyte @shared idx = 2
;
; if flakes[idx]==239 {
; txt.print("yes")
; } else {
; txt.print("nope")
; }
;
; ubyte @shared xx = 16
; ubyte @shared yy = 20
;
; txt.print_ub(xx>79 or yy > 49)
2024-03-01 18:45:16 +00:00
; if xx>79 or yy > 49 {
; if xx>79 or yy > 49 {
; txt.print("no\n")
; }
2024-03-01 18:45:16 +00:00
; else {
; txt.print("yes\n")
; }
2024-03-01 18:45:16 +00:00
}
}