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