prog8/examples/test.p8

22 lines
439 B
Plaintext
Raw Normal View History

%import textio
%import emudbg
2023-09-24 21:00:40 +00:00
%zeropage basicsafe
%option no_sysinit
main {
2023-09-18 22:08:17 +00:00
sub start() {
txt.print_ub(emudbg.is_emulator())
2023-10-01 23:34:56 +00:00
txt.nl()
emudbg.console_value1(123)
emudbg.console_value2(222)
for cx16.r0L in iso:"Hello debug console!\n"
emudbg.console_chrout(cx16.r0L)
emudbg.console_write(iso:"Hello another message!\n")
emudbg.EMU_DBG_HOTKEY_ENABLED=false
}
}
2023-09-24 21:00:40 +00:00