Re-enable Z180 internal I/O, add basic ROM which maps the Z180 internal I/O out of...
[fuzix_sim.git] / debugger.h
1 #ifndef _DEBUGGER_H
2 #define _DEBUGGER_H 1
3
4 #if 0 // set to 1 to enable debugging printf
5 #define debugger_instruction_hook(addr) fprintf(stderr, "%04x\n", addr);
6 #else
7 #define debugger_instruction_hook(addr)
8 #endif
9
10 #endif