diff options
Diffstat (limited to 'src/devices/bus/spectrum/uslot.cpp')
-rw-r--r-- | src/devices/bus/spectrum/uslot.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/devices/bus/spectrum/uslot.cpp b/src/devices/bus/spectrum/uslot.cpp index b689df0cecb..eeef849a8fe 100644 --- a/src/devices/bus/spectrum/uslot.cpp +++ b/src/devices/bus/spectrum/uslot.cpp @@ -82,6 +82,24 @@ void spectrum_uslot_device::pre_opcode_fetch(offs_t offset) m_exp2->pre_opcode_fetch(offset); } +void spectrum_uslot_device::post_opcode_fetch(offs_t offset) +{ + m_exp1->post_opcode_fetch(offset); + m_exp2->post_opcode_fetch(offset); +} + +void spectrum_uslot_device::pre_data_fetch(offs_t offset) +{ + m_exp1->pre_data_fetch(offset); + m_exp2->pre_data_fetch(offset); +} + +void spectrum_uslot_device::post_data_fetch(offs_t offset) +{ + m_exp1->post_data_fetch(offset); + m_exp2->post_data_fetch(offset); +} + uint8_t spectrum_uslot_device::mreq_r(offs_t offset) { uint8_t data = 0xff; |