prog8/examples/test.p8

23 lines
314 B
Plaintext
Raw Normal View History

2020-03-24 23:32:54 +00:00
%import c64lib
%import c64utils
%import c64flt
%zeropage basicsafe
2020-07-02 19:21:40 +00:00
%option enable_floats
2020-06-14 00:39:48 +00:00
2020-03-24 23:32:54 +00:00
main {
2020-07-26 21:32:20 +00:00
float[] fa = [1,2,3,4]
2020-07-26 21:32:20 +00:00
sub start() {
wot("asdfasdf")
wot("asdfasdf")
wot("asdfasdf1")
2020-07-26 21:32:20 +00:00
}
sub wot(uword text) {
2020-07-26 22:28:48 +00:00
c64scr.print(4.4, 1)
2020-07-26 21:32:20 +00:00
c64.CHROUT('\n')
2020-07-25 23:32:27 +00:00
}
}