From 5872e0ea4a72ac2d69d94935e1a63702d51d1757 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 25 May 2022 08:15:18 -0400 Subject: [PATCH] Resolve MOVE.l xx, -(An) write target. --- .../Implementation/68000Mk2Implementation.hpp | 54 +++++++++++++++++-- 1 file changed, 50 insertions(+), 4 deletions(-) diff --git a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp index 1bdb2c581..1fdf0c692 100644 --- a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp +++ b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp @@ -107,6 +107,8 @@ enum ExecutionState: int { MOVE, MOVE_predec, + MOVE_predec_l, + MOVE_prefetch_decode, MOVE_complete, MOVE_complete_l, @@ -1581,8 +1583,20 @@ void Processor