fix weird conflicts that were caused from master
All checks were successful
eden-license / license-header (pull_request) Successful in 16s

This commit is contained in:
Gamer64 2025-08-02 17:16:10 +02:00
parent 605190e914
commit 332ac062d0
49 changed files with 915 additions and 653 deletions

View file

@ -445,6 +445,9 @@ static void RunTestInstance(Dynarmic::A32::Jit& jit,
}
}
// TODO: Why the difference? QEMU what are you doing???
jit.Regs()[15] = uni.GetRegisters()[15];
REQUIRE(uni.GetRegisters() == jit.Regs());
REQUIRE(uni.GetExtRegs() == jit.ExtRegs());
REQUIRE((uni.GetCpsr() & 0xFFFFFDDF) == (jit.Cpsr() & 0xFFFFFDDF));