mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 08:49:37 +00:00
Fix timing of CMPM.
This commit is contained in:
parent
57aa8d2f17
commit
dbf7909b85
@ -698,7 +698,9 @@ void Processor<BusHandler, dtack_is_implicit, permit_overrun, signal_will_perfor
|
||||
|
||||
StdCASE(CMPb, perform_state_ = Perform_np);
|
||||
StdCASE(CMPw, perform_state_ = Perform_np);
|
||||
StdCASE(CMPl, perform_state_ = Perform_np_n);
|
||||
StdCASE(CMPl,
|
||||
perform_state_ = instruction_.mode(1) == Mode::DataRegisterDirect ? Perform_np_n : Perform_np
|
||||
);
|
||||
|
||||
StdCASE(CMPAw, perform_state_ = Perform_np_n);
|
||||
StdCASE(CMPAl, perform_state_ = Perform_np_n);
|
||||
|
Loading…
Reference in New Issue
Block a user