1 #ifndef M68KOPS__HEADER
2 #define M68KOPS__HEADER
3 
4 /* ======================================================================== */
5 /* ============================ OPCODE HANDLERS =========================== */
6 /* ======================================================================== */
7 
8 
9 /* Build the opcode handler table */
10 void m68ki_build_opcode_table(void);
11 
12 extern void (*m68ki_instruction_jump_table[0x10000])(void); /* opcode handler jump table */
13 extern unsigned char m68ki_cycles[][0x10000];
14 
15 
16 /* ======================================================================== */
17 /* ============================== END OF FILE ============================= */
18 /* ======================================================================== */
19 
20 #endif /* M68KOPS__HEADER */
21 
22 
23