prog8/examples/test.p8

28 lines
345 B
Plaintext
Raw Normal View History

%import c64utils
%zeropage basicsafe
2019-06-25 21:36:54 +00:00
%import c64flt
2019-03-29 01:13:28 +00:00
~ main {
2019-02-21 00:31:33 +00:00
sub start() {
ubyte[100] arr1
ubyte[100] arr2
2019-06-26 20:29:10 +00:00
2019-06-27 23:21:31 +00:00
_lp:
memcopy(arr1, arr2, len(arr2))
2019-06-27 23:21:31 +00:00
c64scr.setcc(20,10,65,2)
goto x
c64scr.setcc(20,10,65,2)
}
sub x() {
derp:
c64scr.print("ey\n")
goto derp
2019-06-26 20:29:10 +00:00
}
}