diff options
Diffstat (limited to 'src/devices/bus/spectrum/mgt.cpp')
-rw-r--r-- | src/devices/bus/spectrum/mgt.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/spectrum/mgt.cpp b/src/devices/bus/spectrum/mgt.cpp index 035f82de2b0..265db2d7301 100644 --- a/src/devices/bus/spectrum/mgt.cpp +++ b/src/devices/bus/spectrum/mgt.cpp @@ -404,7 +404,7 @@ void spectrum_disciple_device::device_reset() // IMPLEMENTATION spectrum_plusd_device //************************************************************************** -int spectrum_plusd_device::romcs() +bool spectrum_plusd_device::romcs() { return m_romcs; } @@ -540,9 +540,9 @@ void spectrum_plusd_device::busy_w(int state) // IMPLEMENTATION spectrum_disciple_device //************************************************************************** -int spectrum_disciple_device::romcs() +bool spectrum_disciple_device::romcs() { - return m_romcs | m_exp->romcs(); + return m_romcs || m_exp->romcs(); } void spectrum_disciple_device::pre_opcode_fetch(offs_t offset) |