all repos — mgba @ 337d4dc1e658e4efd6c111a05248a7116e0020b2

mGBA Game Boy Advance Emulator

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

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