1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-26 10:29:31 +00:00

Future-proof perform_bus_operation.

This commit is contained in:
Thomas Harte 2022-06-06 08:20:16 -04:00
parent 57858b2fa5
commit 6aa599a17c

View File

@ -158,8 +158,7 @@ class ConcreteMachine:
}
// MARK: MC68000::BusHandler
using Microcycle = CPU::MC68000Mk2::Microcycle;
HalfCycles perform_bus_operation(const Microcycle &cycle, int is_supervisor) {
template <typename Microcycle> HalfCycles perform_bus_operation(const Microcycle &cycle, int is_supervisor) {
// Just in case the last cycle was an interrupt acknowledge or bus error. TODO: find a better solution?
mc68000_.set_is_peripheral_address(false);
mc68000_.set_bus_error(false);