prog8/examples/test.p8

28 lines
295 B
Plaintext
Raw Normal View History

%import c64utils
%import c64flt
2019-08-04 13:33:00 +00:00
%option enable_floats
%zeropage basicsafe
2019-03-29 01:13:28 +00:00
2019-07-29 21:11:13 +00:00
main {
sub start() {
byte bb
ubyte ub
word ww
uword uw
float fl
bb = 10*bb
ub = 12*ub
ww = 15*ww
uw = 20*uw
fl = 20*fl
}
2019-08-04 16:40:50 +00:00
}