From 49938017413aea4a68c7e287b1163863f7ef21c9 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 21 May 2022 21:05:05 -0400 Subject: [PATCH] Add missing prefetch to BSET, BCHG, BCLR. --- Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp index 82ccf79f7..ef0041402 100644 --- a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp +++ b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp @@ -1543,6 +1543,7 @@ void Processor( instruction_, operand_[0], operand_[1], status_, *static_cast(this)); + Prefetch(); IdleBus(1 + dynamic_instruction_length_); registers_[instruction_.reg(1)] = operand_[1]; MoveToState(Decode); @@ -1555,6 +1556,7 @@ void Processor( instruction_, operand_[0], operand_[1], status_, *static_cast(this)); + Prefetch(); IdleBus(2 + dynamic_instruction_length_); registers_[instruction_.reg(1)] = operand_[1]; MoveToState(Decode);