prog8/examples/comparison_ifs_byte.p8

116 lines
2.6 KiB
Lua

%import c64utils
~ main {
sub start() {
byte v1
byte v2
v1 = 100
v2 = 127
if v1==v2
c64scr.print("error in 100==127!\n")
else
c64scr.print("ok: 100 not == 127\n")
if v1!=v2
c64scr.print("ok: 100 != 127\n")
else
c64scr.print("error in 100!=127!\n")
if v1<v2
c64scr.print("ok: 100 < 127\n")
else
c64scr.print("error in 100<127!\n")
if v1<=v2
c64scr.print("ok: 100 <= 127\n")
else
c64scr.print("error in 100<=127!\n")
if v1>v2
c64scr.print("error in 100>127!\n")
else
c64scr.print("ok: 100 is not >127\n")
if v1>=v2
c64scr.print("error in 100>=127!\n")
else
c64scr.print("ok: 100 is not >=127\n")
v1 = 125
v2 = 22
if v1==v2
c64scr.print("error in 125==22!\n")
else
c64scr.print("ok: 125 not == 22\n")
if v1!=v2
c64scr.print("ok: 125 != 22\n")
else
c64scr.print("error in 125!=22!\n")
if v1<v2
c64scr.print("error in 125<22!\n")
else
c64scr.print("ok: 125 is not < 22\n")
if v1<=v2
c64scr.print("error in 125<=22!\n")
else
c64scr.print("ok: 125 is not <= 22\n")
if v1>v2
c64scr.print("ok: 125 > 22\n")
else
c64scr.print("error in 125>22!\n")
if v1>=v2
c64scr.print("ok: 125 >= 22\n")
else
c64scr.print("error in 125>=22!\n")
v1 = 22
v2 = 22
if v1==v2
c64scr.print("ok: 22 == 22\n")
else
c64scr.print("error in 22==22!\n")
if v1!=v2
c64scr.print("error in 22!=22!\n")
else
c64scr.print("ok: 22 is not != 22\n")
if v1<v2
c64scr.print("error in 22<22!\n")
else
c64scr.print("ok: 22 is not < 22\n")
if v1<=v2
c64scr.print("ok: 22 <= 22\n")
else
c64scr.print("error in 22<=22!\n")
if v1>v2
c64scr.print("error in 22>22!\n")
else
c64scr.print("ok: 22 is not > 22\n")
if v1>=v2
c64scr.print("ok: 22 >= 22\n")
else
c64scr.print("error in 22>=22!\n")
ubyte endX = X
if endX == 255
c64scr.print("stack x ok!\n")
else
c64scr.print("error: stack x != 255 !\n")
}
}