prog8/examples/test.p8

17 lines
225 B
Plaintext
Raw Normal View History

2019-07-15 01:57:51 +00:00
%import c64flt
2019-07-01 21:41:30 +00:00
%zeropage basicsafe
2019-07-15 01:57:51 +00:00
%option enable_floats
2019-03-29 01:13:28 +00:00
2019-07-29 21:11:13 +00:00
main {
sub start() {
2019-07-30 00:26:30 +00:00
byte[4] barray=2
uword[4] uwarray=50000
word[4] warray=-500
float[4] rotatedx=0.0
2019-07-22 16:58:55 +00:00
}
}