uvmac/lib/M68K/m68kops.h
InvisibleUp 33d075812a Just include m68kops.c in the directory. It's fine.
The only thing is that you'll need to re-run the makefile if you change a
config option. But really, it's fine.
2023-04-01 16:52:57 -07:00

23 lines
772 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 */