Allocate only interpreter or dynarec + hopefully fixed some FPU bugs + hopefully it will build in Windows CI 🙏
This commit is contained in:
@@ -35,10 +35,10 @@ void Cop1::decode(Registers& regs, Interpreter& cpu, u32 instr) {
|
||||
case 0x07: FireException(regs, ExceptionCode::ReservedInstruction, 1, true); break;
|
||||
case 0x08:
|
||||
switch(mask_branch) {
|
||||
case 0: cpu.b(regs, instr, !regs.cop1.fcr31.compare); break;
|
||||
case 1: cpu.b(regs, instr, regs.cop1.fcr31.compare); break;
|
||||
case 2: cpu.bl(regs, instr, !regs.cop1.fcr31.compare); break;
|
||||
case 3: cpu.bl(regs, instr, regs.cop1.fcr31.compare); break;
|
||||
case 0: cpu.b(instr, !regs.cop1.fcr31.compare); break;
|
||||
case 1: cpu.b(instr, regs.cop1.fcr31.compare); break;
|
||||
case 2: cpu.bl(instr, !regs.cop1.fcr31.compare); break;
|
||||
case 3: cpu.bl(instr, regs.cop1.fcr31.compare); break;
|
||||
default: Util::panic("Undefined BC COP1 {:02X}\n", mask_branch);
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user