diff options
author | Mike Pavone <pavone@retrodev.com> | 2012-11-27 09:28:13 -0800 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2012-11-27 09:28:13 -0800 |
commit | 707e8f0e6a9d5518ecb91afdcc1cf26e35eb82a3 (patch) | |
tree | a9491003e628ebc692ed8779a8362a51a251c70f /68kinst.h | |
parent | d3590618c3889ed92db9d8e848820b52da68f9f2 (diff) |
x86 code gen, initial work on translator
Diffstat (limited to '68kinst.h')
-rw-r--r-- | 68kinst.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,6 @@ +#ifndef M68KINST_H_ +#define M68KINST_H_ + #include <stdint.h> typedef enum { @@ -176,3 +179,5 @@ uint16_t * m68K_decode(uint16_t * istream, m68kinst * dst); uint32_t m68k_cycles(m68kinst * inst); int m68K_disasm(m68kinst * decoded, char * dst); +#endif + |