well, adding shit. laying out the base for the interpreter. really dirty code.

This commit is contained in:
StapleButter
2016-11-24 18:31:49 +01:00
parent 3505ec993b
commit f74fb2dd27
11 changed files with 2143 additions and 17 deletions

16
ARMInterpreter.h Normal file
View File

@ -0,0 +1,16 @@
#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