prog8/examples/test.p8
2019-08-13 03:00:17 +02:00

15 lines
228 B
Lua

%import c64lib
%import c64utils
%import c64flt
%zeropage dontuse
main {
sub start() {
c64scr.print("\nbreakpoint after this.")
%breakpoint
c64scr.print("\nyou should see no errors above.")
}
}