mgba/src/arm/isa-arm.h

15 lines
260 B
C
Raw Normal View History

2013-04-08 04:15:32 +00:00
#ifndef ISA_ARM_H
#define ISA_ARM_H
2014-10-12 01:18:47 +00:00
#include "util/common.h"
2013-04-08 04:15:32 +00:00
#define ARM_PREFETCH_CYCLES (1 + cpu->memory.activeSeqCycles32)
2014-01-22 05:42:21 +00:00
2013-04-08 04:15:32 +00:00
struct ARMCore;
typedef void (*ARMInstruction)(struct ARMCore*, uint32_t opcode);
2014-01-22 05:42:21 +00:00
const ARMInstruction _armTable[0x1000];
2013-04-08 04:15:32 +00:00
#endif