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

13
ARMInterpreter_Branch.h Normal file
View File

@ -0,0 +1,13 @@
#ifndef ARMINTERPRETER_BRANCH_H
#define ARMINTERPRETER_BRANCH_H
namespace ARMInterpreter
{
s32 A_B(ARM* cpu);
s32 A_BL(ARM* cpu);
}
#endif