mirror of
https://github.com/irmen/prog8.git
synced 2025-02-16 22:30:46 +00:00
18 lines
299 B
Lua
18 lines
299 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte @shared n=20
|
|
ubyte @shared x=10
|
|
|
|
if n < x {
|
|
; nothing here, conditional gets inverted
|
|
} else {
|
|
cx16.r0++
|
|
}
|
|
cx16.r0L = n<x == 0
|
|
cx16.r1L = not n<x
|
|
}
|
|
}
|