cool-bun-demo/system/debug.c

12 lines
222 B
C
Raw Normal View History

2024-09-19 17:03:46 +00:00
#include "debug.h"
volatile short *dbg = (volatile short *)0x100;
/**
* Create a two-word write watch in the UAE debugger at memory location 0x100
* and call this function.
*/
void triggerUAEDebugger() {
*(dbg) = 0;
}