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;