1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-03 11:30:02 +00:00

Advances right up to the lack of MOVEM actions being the final piece.

This commit is contained in:
Thomas Harte 2019-04-14 14:45:29 -04:00
parent 823f91605b
commit d70229201d

View File

@ -626,6 +626,10 @@ template <class T, bool dtack_is_implicit> void Processor<T, dtack_is_implicit>:
#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;