diff options
author | Mike Pavone <pavone@retrodev.com> | 2013-01-20 19:10:29 -0800 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2013-01-20 19:10:29 -0800 |
commit | d69c8b5a0af2fefa260d8203b6ef60d4c5f7e2c0 (patch) | |
tree | 919d6b1b06baea22ad68c78f7cd289a20f4021cd /m68k_to_x86.h | |
parent | caad3a07a1d56b9f455667fef9e63e3be62454f7 (diff) |
Add support for breaking into the debugger while game is running
Diffstat (limited to 'm68k_to_x86.h')
-rw-r--r-- | m68k_to_x86.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/m68k_to_x86.h b/m68k_to_x86.h index fdfaa4b..ab0c979 100644 --- a/m68k_to_x86.h +++ b/m68k_to_x86.h @@ -1,3 +1,5 @@ +#ifndef M68K_TO_X86_H_ +#define M68K_TO_X86_H_ #include <stdint.h> #include <stdio.h> #include "68kinst.h" @@ -63,3 +65,5 @@ void m68k_reset(m68k_context * context); void insert_breakpoint(m68k_context * context, uint32_t address, uint8_t * bp_handler); void remove_breakpoint(m68k_context * context, uint32_t address); +#endif //M68K_TO_X86_H_ + |