From 274902c3c19555bb3c3f1166bbb52d0ba6225293 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 19 May 2022 11:23:26 -0400 Subject: [PATCH] Add to-memory write-back. Am going to reconsider usage of temporary_address_ as noted. --- .../Implementation/68000Mk2Implementation.hpp | 28 +++++++++++++++---- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp index 1b4cbeb88..b3ce31921 100644 --- a/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp +++ b/Processors/68000Mk2/Implementation/68000Mk2Implementation.hpp @@ -29,6 +29,7 @@ enum ExecutionState: int { FetchOperand_l, StoreOperand, + StoreOperand_l, // Specific addressing mode fetches. @@ -167,8 +168,8 @@ void Processor