From d70229201d4d39f46076c224c85903bbd1b61149 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 14 Apr 2019 14:45:29 -0400 Subject: [PATCH] Advances right up to the lack of MOVEM actions being the final piece. --- Processors/68000/Implementation/68000Implementation.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Processors/68000/Implementation/68000Implementation.hpp b/Processors/68000/Implementation/68000Implementation.hpp index 327be6618..7741c2f67 100644 --- a/Processors/68000/Implementation/68000Implementation.hpp +++ b/Processors/68000/Implementation/68000Implementation.hpp @@ -626,6 +626,10 @@ template void Processor: #undef add_overflow break; + case int(MicroOp::Action::CopyNextWord): + next_word_ = prefetch_queue_.halves.low.full; + break; + case int(MicroOp::Action::SetMoveFlagsb): zero_result_ = active_program_->source->halves.low.halves.low; negative_flag_ = zero_result_ & 0x80;