From 1b224c961e6800862738983a849484d7bd0eb080 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 3 May 2022 14:23:57 -0400 Subject: [PATCH] Fix Scc, add operand flags for DBcc. --- InstructionSets/M68k/Implementation/PerformImplementation.hpp | 2 +- InstructionSets/M68k/Instruction.hpp | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/InstructionSets/M68k/Implementation/PerformImplementation.hpp b/InstructionSets/M68k/Implementation/PerformImplementation.hpp index b6a549aff..9326f9366 100644 --- a/InstructionSets/M68k/Implementation/PerformImplementation.hpp +++ b/InstructionSets/M68k/Implementation/PerformImplementation.hpp @@ -311,7 +311,7 @@ template < break; case Operation::Scc: - dest.b = status.evaluate_condition(instruction.condition()) ? 0xff : 0x00; + src.b = status.evaluate_condition(instruction.condition()) ? 0xff : 0x00; break; /* diff --git a/InstructionSets/M68k/Instruction.hpp b/InstructionSets/M68k/Instruction.hpp index 8a816b8e7..79aa24bc8 100644 --- a/InstructionSets/M68k/Instruction.hpp +++ b/InstructionSets/M68k/Instruction.hpp @@ -277,6 +277,7 @@ template uint8_t ope // Single-operand write. // case Operation::MOVEfromSR: case Operation::MOVEfromUSP: + case Operation::Scc: return StoreOp1; // @@ -291,6 +292,7 @@ template uint8_t ope // case Operation::CMPb: case Operation::CMPw: case Operation::CMPl: case Operation::CMPAw: case Operation::CMPAl: + case Operation::DBcc: return FetchOp1 | FetchOp2; //