prog8/examples/test.p8
2024-03-02 23:19:55 +01:00

46 lines
773 B
Lua

%import string
%import textio
%option no_sysinit
%zeropage basicsafe
main {
sub start() {
ubyte[] envelope_attacks = [1,2,3,4]
if msb(cx16.r0) > cx16.r2L or envelope_attacks[cx16.r1L]==0 {
txt.print("yep")
}
;
; ubyte[] barray = [11,22,33]
; uword[] warray = [1111,2222,3333]
;
; if any(barray)
; cx16.r0++
;
;
; if barray[2] == 33
; cx16.r0++
; else
; cx16.r1++
;
; if warray[2] == 3333
; cx16.r0++
; else
; cx16.r1++
;
; if barray[cx16.r0L] == 33
; cx16.r0++
; else
; cx16.r1++
;
; if warray[cx16.r0L] == 3333
; cx16.r0++
; else
; cx16.r1++
}
}