mgba/src/arm/isa-arm.h

15 lines
261 B
C
Raw Normal View History

2013-04-08 04:15:32 +00:00
#ifndef ISA_ARM_H
#define ISA_ARM_H
#include <stdint.h>
2014-01-22 05:42:21 +00:00
#define ARM_PREFETCH_CYCLES (1 + cpu->memory->activePrefetchCycles32)
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