1
0
mirror of https://github.com/cc65/cc65.git synced 2026-01-23 08:16:38 +00:00
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;
}