From 2d09178449a4548c97ef7b449edef25e14875d82 Mon Sep 17 00:00:00 2001 From: zilmar Date: Thu, 14 Sep 2023 11:15:42 +0930 Subject: [PATCH] Core: Add calls to CPO1_UNIMPLEMENTED_OP for Cop1.w functions --- .../N64System/Interpreter/InterpreterOps.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/Project64-core/N64System/Interpreter/InterpreterOps.cpp b/Source/Project64-core/N64System/Interpreter/InterpreterOps.cpp index 3ec899fd4f..534b8306e8 100644 --- a/Source/Project64-core/N64System/Interpreter/InterpreterOps.cpp +++ b/Source/Project64-core/N64System/Interpreter/InterpreterOps.cpp @@ -567,10 +567,10 @@ R4300iOp::Func * R4300iOp::BuildInterpreter() Jump_CoP1_W[5] = UnknownOpcode; Jump_CoP1_W[6] = UnknownOpcode; Jump_CoP1_W[7] = UnknownOpcode; - Jump_CoP1_W[8] = UnknownOpcode; - Jump_CoP1_W[9] = UnknownOpcode; - Jump_CoP1_W[10] = UnknownOpcode; - Jump_CoP1_W[11] = UnknownOpcode; + Jump_CoP1_W[8] = CPO1_UNIMPLEMENTED_OP; + Jump_CoP1_W[9] = CPO1_UNIMPLEMENTED_OP; + Jump_CoP1_W[10] = CPO1_UNIMPLEMENTED_OP; + Jump_CoP1_W[11] = CPO1_UNIMPLEMENTED_OP; Jump_CoP1_W[12] = CPO1_UNIMPLEMENTED_OP; Jump_CoP1_W[13] = CPO1_UNIMPLEMENTED_OP; Jump_CoP1_W[14] = CPO1_UNIMPLEMENTED_OP; @@ -596,7 +596,7 @@ R4300iOp::Func * R4300iOp::BuildInterpreter() Jump_CoP1_W[34] = UnknownOpcode; Jump_CoP1_W[35] = UnknownOpcode; Jump_CoP1_W[36] = CPO1_UNIMPLEMENTED_OP; - Jump_CoP1_W[37] = UnknownOpcode; + Jump_CoP1_W[37] = CPO1_UNIMPLEMENTED_OP; Jump_CoP1_W[38] = UnknownOpcode; Jump_CoP1_W[39] = UnknownOpcode; Jump_CoP1_W[40] = UnknownOpcode;