prog8/examples/test.p8

33 lines
424 B
Plaintext
Raw Normal View History

2020-03-24 23:32:54 +00:00
%import c64lib
%import c64utils
%import c64flt
%zeropage basicsafe
2019-08-09 00:15:31 +00:00
2020-06-14 00:39:48 +00:00
2020-03-24 23:32:54 +00:00
main {
2020-06-14 00:39:48 +00:00
sub jumpsub() {
; goto jumpsub ; TODO fix compiler loop
goto blabla
blabla:
A=99
return
}
sub start() {
ubyte[] array = [1,2,3]
ubyte[len(array)] bytesE = 22 ; TODO fix nullpointer error
float[len(array)] floatsE = 3.33 ; TODO fix error
}
2020-06-14 00:39:48 +00:00
2020-03-21 17:39:36 +00:00
}
2020-03-24 23:32:54 +00:00