all repos — mgba @ 70f94db208293a100b46bda90d6c9b6f720de6c1

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 "util/common.h"
 5
 6struct ARMCore;
 7
 8typedef void (*ThumbInstruction)(struct ARMCore*, uint16_t opcode);
 9const ThumbInstruction _thumbTable[0x400];
10
11#endif