prog8/examples/test.p8

18 lines
299 B
Plaintext
Raw Normal View History

2023-12-29 06:00:14 +00:00
%import textio
%zeropage basicsafe
main {
sub start() {
2024-01-01 15:11:35 +00:00
ubyte @shared n=20
ubyte @shared x=10
2024-01-01 15:11:35 +00:00
if n < x {
; nothing here, conditional gets inverted
} else {
cx16.r0++
}
cx16.r0L = n<x == 0
cx16.r1L = not n<x
2023-12-26 21:01:49 +00:00
}
}