mirror of
https://github.com/irmen/prog8.git
synced 2025-01-11 13:29:45 +00:00
21 lines
330 B
Lua
21 lines
330 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
sub start() {
|
|
sys.clear_carry()
|
|
cx16.r0s=-42
|
|
|
|
if_z
|
|
txt.print("zero")
|
|
else if_cs
|
|
txt.print("carry")
|
|
else if_neg
|
|
txt.print("negative")
|
|
else
|
|
txt.print("nothing")
|
|
}
|
|
}
|
|
|