1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Added incrementing of the refresh register.

This commit is contained in:
Thomas Harte 2017-05-25 21:01:52 -04:00
parent 2cadc706e2
commit c668ff9472

View File

@ -557,6 +557,7 @@ template <class T> class Processor: public MicroOpScheduler<MicroOp> {
break;
case MicroOp::DecodeOperation:
pc_.full++;
r_ = (r_ & 0x80) | ((r_ + 1) & 0x7f);
decode_operation(operation_);
break;