diff m68k_to_x86.h @ 198:209a37eed3e7

Add support for breaking into the debugger while game is running
author Mike Pavone <pavone@retrodev.com>
date Sun, 20 Jan 2013 19:10:29 -0800
parents 7c227a8ec53d
children 3457dc6fd558
line wrap: on
line diff
--- a/m68k_to_x86.h	Thu Jan 17 20:00:07 2013 -0800
+++ b/m68k_to_x86.h	Sun Jan 20 19:10:29 2013 -0800
@@ -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 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_
+