Files
cc65/samples/debug.c
2025-07-11 21:56:34 +02:00

13 lines
212 B
C

#include <dbg.h>
int main(void)
{
/* DbgInit has to be called once, to install the BRK handler */
DbgInit(0);
/* now to break into the debugger, use the BREAK macro */
BREAK();
return 0;
}