mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 13:27:41 -07:00
19 lines
298 B
C++
19 lines
298 B
C++
|
|
#ifndef ARMINTERPRETER_H
|
|
#define ARMINTERPRETER_H
|
|
|
|
#include "types.h"
|
|
#include "ARM.h"
|
|
|
|
namespace ARMInterpreter
|
|
{
|
|
|
|
extern s32 (*ARMInstrTable[4096])(ARM* cpu);
|
|
extern s32 (*THUMBInstrTable[1024])(ARM* cpu);
|
|
|
|
s32 A_BLX_IMM(ARM* cpu); // I'm a special one look at me
|
|
|
|
}
|
|
|
|
#endif // ARMINTERPRETER_H
|