2020-09-20 21:49:36 +00:00
|
|
|
%import textio
|
2020-11-15 16:44:47 +00:00
|
|
|
%import floats
|
2020-11-15 14:04:23 +00:00
|
|
|
%zeropage basicsafe
|
2020-11-20 21:15:14 +00:00
|
|
|
%import test_stack
|
2020-08-27 17:47:50 +00:00
|
|
|
|
2020-09-24 17:26:07 +00:00
|
|
|
main {
|
2020-09-28 00:23:36 +00:00
|
|
|
|
2020-10-09 20:47:42 +00:00
|
|
|
sub start() {
|
2020-11-09 22:57:50 +00:00
|
|
|
|
2020-11-26 00:11:31 +00:00
|
|
|
float fl
|
|
|
|
word ww
|
|
|
|
uword uw
|
|
|
|
byte bb
|
|
|
|
ubyte ub
|
2020-11-22 16:16:07 +00:00
|
|
|
|
2020-11-24 20:41:44 +00:00
|
|
|
|
2020-11-26 00:11:31 +00:00
|
|
|
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
|
|
|
|
2020-11-26 00:11:31 +00:00
|
|
|
txt.print_w(ww)
|
2020-11-24 20:41:44 +00:00
|
|
|
txt.chrout('\n')
|
2020-11-24 21:16:50 +00:00
|
|
|
txt.print_uw(uw)
|
|
|
|
txt.chrout('\n')
|
2020-11-26 00:11:31 +00:00
|
|
|
txt.print_b(bb)
|
2020-11-24 21:26:11 +00:00
|
|
|
txt.chrout('\n')
|
2020-11-26 00:11:31 +00:00
|
|
|
txt.print_ub(ub)
|
2020-11-24 21:26:11 +00:00
|
|
|
txt.chrout('\n')
|
|
|
|
|
|
|
|
|
2020-11-24 20:41:44 +00:00
|
|
|
test_stack.test()
|
2020-11-23 21:14:45 +00:00
|
|
|
|
|
|
|
}
|
2020-08-27 17:47:50 +00:00
|
|
|
}
|