prog8/examples/test.p8

26 lines
411 B
Plaintext
Raw Normal View History

2023-12-09 20:48:22 +00:00
%import textio
%import floats
%zeropage basicsafe
2023-12-09 20:48:22 +00:00
main {
sub start() {
sys.push(11)
sys.pushw(2222)
floats.push(floats.π)
cx16.r2++
float pi = floats.pop()
floats.print_f(pi)
txt.nl()
cx16.r1 = sys.popw()
cx16.r0L = sys.pop()
txt.print_ub(cx16.r0L)
txt.nl()
txt.print_uw(cx16.r1)
txt.nl()
}
}