Fixed endianness for parallel-rdp

This commit is contained in:
CocoSimone
2022-08-16 11:48:12 +02:00
parent e2313c212c
commit 701c0de18a
13 changed files with 172 additions and 60 deletions

View File

@@ -118,14 +118,8 @@ void Cpu::Step(Mem& mem) {
CheckCompareInterrupt(mem.mmio.mi, regs);
static int count = 0;
if(regs.gpr[30] == -1 && count < 1) {
util::logdebug("Test passed!\n");
count++;
}
u32 instruction = mem.Read<u32>(regs, regs.pc, regs.pc);
//LogInstruction(instruction);
LogInstruction(instruction);
HandleInterrupt(regs);