all repos — mgba @ b541b99d0c88379c6a40a15b79ec4752a22f9be8

mGBA Game Boy Advance Emulator

src/isa-arm.h (view raw)

 1#ifndef ISA_ARM_H
 2#define ISA_ARM_H
 3
 4#include <stdint.h>
 5
 6struct ARMCore;
 7
 8void ARMStep(struct ARMCore* cpu);
 9typedef void (*ARMInstruction)(struct ARMCore*, uint32_t opcode);
10
11#endif