mgba-ps3/src/arm/isa-arm.h
2013-04-14 13:04:24 -07:00

12 lines
184 B
C

#ifndef ISA_ARM_H
#define ISA_ARM_H
#include <stdint.h>
struct ARMCore;
void ARMStep(struct ARMCore* cpu);
typedef void (*ARMInstruction)(struct ARMCore*, uint32_t opcode);
#endif