all repos — mgba @ 51ad9d37e1cbba22d81d9bcddfe9ad8d7c6de1c2

mGBA Game Boy Advance Emulator

src/arm/isa-arm.h (view raw)

 1#ifndef ISA_ARM_H
 2#define ISA_ARM_H
 3
 4#include "util/common.h"
 5
 6#define ARM_PREFETCH_CYCLES (1 + cpu->memory.activeSeqCycles32)
 7
 8struct ARMCore;
 9
10typedef void (*ARMInstruction)(struct ARMCore*, uint32_t opcode);
11const ARMInstruction _armTable[0x1000];
12
13
14#endif