mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 13:27:41 -07:00
17 lines
240 B
C++
17 lines
240 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);
|
|
|
|
}
|
|
|
|
#endif // ARMINTERPRETER_H
|