mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-05 02:15:07 +01:00
23 lines
794 B
C
23 lines
794 B
C
#ifndef M68KOPS__HEADER
|
|
#define M68KOPS__HEADER
|
|
|
|
/* ======================================================================== */
|
|
/* ============================ OPCODE HANDLERS =========================== */
|
|
/* ======================================================================== */
|
|
|
|
|
|
/* Build the opcode handler table */
|
|
void m68ki_build_opcode_table(void);
|
|
|
|
extern void (*m68ki_instruction_jump_table[0x10000])(void); /* opcode handler jump table */
|
|
extern unsigned char m68ki_cycles[][0x10000];
|
|
|
|
|
|
/* ======================================================================== */
|
|
/* ============================== END OF FILE ============================= */
|
|
/* ======================================================================== */
|
|
|
|
#endif /* M68KOPS__HEADER */
|
|
|
|
|