prog8/examples/test.p8

15 lines
228 B
Plaintext
Raw Normal View History

2019-08-07 00:02:34 +00:00
%import c64lib
2019-08-10 12:20:42 +00:00
%import c64utils
2019-08-11 12:02:53 +00:00
%import c64flt
%zeropage dontuse
2019-08-09 00:15:31 +00:00
2019-08-07 00:02:34 +00:00
main {
sub start() {
2019-08-11 12:02:53 +00:00
2019-08-13 01:00:17 +00:00
c64scr.print("\nbreakpoint after this.")
%breakpoint
2019-08-11 12:02:53 +00:00
c64scr.print("\nyou should see no errors above.")
}
}