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

6
ARM.h
View File

@ -6,12 +6,18 @@
#include "types.h"
#include "NDS.h"
// lame
#define C_S(x) x
#define C_N(x) x
class ARM
{
public:
ARM(u32 num);
~ARM(); // destroy shit
void Reset();
void JumpTo(u32 addr);
s32 Execute(s32 cycles);