prog8/examples/test.p8

38 lines
582 B
Plaintext
Raw Normal View History

%import textio
%import floats
%zeropage basicsafe
%import test_stack
2020-08-27 17:47:50 +00:00
main {
2020-10-09 20:47:42 +00:00
sub start() {
2020-11-09 22:57:50 +00:00
float fl
word ww
uword uw
byte bb
ubyte ub
fl = 9997.999
ww = (fl+1.1) as word
uw = (fl+1.1) as uword
fl = 97.999
bb = (fl+1.1) as byte
ub = (fl+1.1) as ubyte
2020-11-24 21:16:50 +00:00
txt.print_w(ww)
txt.chrout('\n')
2020-11-24 21:16:50 +00:00
txt.print_uw(uw)
txt.chrout('\n')
txt.print_b(bb)
txt.chrout('\n')
txt.print_ub(ub)
txt.chrout('\n')
test_stack.test()
}
2020-08-27 17:47:50 +00:00
}