clean test.p8

This commit is contained in:
Irmen de Jong 2021-10-09 16:33:52 +02:00
parent 5988ba76b5
commit 2365a076ac

View File

@ -1,37 +1,10 @@
%import textio
%import floats
%zeropage dontuse
%import test_stack
%zeropage basicsafe
main {
label:
sub start() {
ubyte[6] ubs = 10 to 20 step 2
ubyte[] ubs2 = 10 to 20 step 2
float[6] fs = 10 to 20 step 2
float[] fs2 = 10 to 20 step 2
txt.print_ub(len(ubs))
txt.nl()
txt.print_ub(len(ubs2))
txt.nl()
txt.print_ub(len(fs))
txt.nl()
txt.print_ub(len(fs2))
txt.nl()
ubyte ix
for ix in 0 to 5 {
txt.print_ub(ubs2[ix])
txt.spc()
}
txt.nl()
for ix in 0 to 5 {
floats.print_f(fs2[ix])
txt.spc()
}
txt.nl()
txt.print("ok")
test_stack.test()
}
}