Panda3DS/src/core/CPU/cpu_dynarmic.cpp
2022-09-15 17:35:59 +03:00

15 lines
No EOL
312 B
C++

#ifdef CPU_DYNARMIC
#include "cpu_dynarmic.hpp"
CPU::CPU(Memory& mem) : mem(mem), env(mem) {}
void CPU::reset() {
// ARM mode, all flags disabled, interrupts and aborts all enabled, user mode
setCPSR(0x00000010);
jit.Reset();
jit.ClearCache();
jit.Regs().fill(0);
}
#endif // CPU_DYNARMIC