melonDS/ARM.h

83 lines
1.4 KiB
C
Raw Normal View History

// ARM shit
#ifndef ARM_H
#define ARM_H
#include "types.h"
#include "NDS.h"
// lame
#define C_S(x) x
#define C_N(x) x
2016-11-24 16:08:53 -07:00
#define C_I(x) x
#define ROR(x, n) (((x) >> (n)) | ((x) << (32-(n))))
class ARM
{
public:
ARM(u32 num);
~ARM(); // destroy shit
void Reset();
void JumpTo(u32 addr);
2016-11-24 16:08:53 -07:00
void RestoreCPSR();
s32 Execute(s32 cycles);
2016-11-24 16:08:53 -07:00
bool CheckCondition(u32 code)
{
if (code == 0xE) return true;
if (ConditionTable[code] & (1 << (CPSR>>28))) return true;
return false;
}
void SetC(bool c)
{
if (c) CPSR |= 0x20000000;
else CPSR &= ~0x20000000;
}
void SetNZ(bool n, bool z)
{
CPSR &= ~0xC0000000;
if (n) CPSR |= 0x80000000;
if (z) CPSR |= 0x40000000;
}
void SetNZCV(bool n, bool z, bool c, bool v)
{
CPSR &= ~0xF0000000;
if (n) CPSR |= 0x80000000;
if (z) CPSR |= 0x40000000;
if (c) CPSR |= 0x20000000;
if (v) CPSR |= 0x10000000;
}
u32 Read32(u32 addr)
{
if (Num) return NDS::ARM7Read32(addr);
else return NDS::ARM9Read32(addr);
}
u32 Num;
u32 R[16]; // heh
u32 CPSR;
u32 R_FIQ[8]; // holding SPSR too
u32 R_SVC[3];
u32 R_ABT[3];
u32 R_IRQ[3];
u32 R_UND[3];
u32 CurInstr;
u32 NextInstr;
u32 ExceptionBase;
2016-11-24 16:08:53 -07:00
static u32 ConditionTable[16];
};
#endif // ARM_H