1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-22 12:33:29 +00:00

Fix restart_operation_fetch.

This commit is contained in:
Thomas Harte 2023-08-17 15:42:34 -04:00
parent d9df568dab
commit ca75822dbe

View File

@ -731,4 +731,5 @@ void ProcessorBase::set_value_of(Register r, uint16_t value) {
void ProcessorBase::restart_operation_fetch() {
scheduled_program_counter_ = nullptr;
next_bus_operation_ = BusOperation::None;
}