diff options
Diffstat (limited to 'src/devices/bus/acorn/cms')
-rw-r--r-- | src/devices/bus/acorn/cms/4080term.cpp | 1 | ||||
-rw-r--r-- | src/devices/bus/acorn/cms/fdc.cpp | 3 | ||||
-rw-r--r-- | src/devices/bus/acorn/cms/hires.cpp | 1 |
3 files changed, 1 insertions, 4 deletions
diff --git a/src/devices/bus/acorn/cms/4080term.cpp b/src/devices/bus/acorn/cms/4080term.cpp index c282715b7ae..d4e5514629d 100644 --- a/src/devices/bus/acorn/cms/4080term.cpp +++ b/src/devices/bus/acorn/cms/4080term.cpp @@ -143,7 +143,6 @@ cms_4080term_device::cms_4080term_device(const machine_config &mconfig, const ch void cms_4080term_device::device_start() { - set_acorn_bus_device(); address_space &space = m_bus->memspace(); space.install_readwrite_handler(0xfd20, 0xfd2f, read8_delegate(FUNC(ef9345_device::data_r), m_ef9345.target()), write8_delegate(FUNC(ef9345_device::data_w), m_ef9345.target())); diff --git a/src/devices/bus/acorn/cms/fdc.cpp b/src/devices/bus/acorn/cms/fdc.cpp index f58e45f9c05..fc9afd47fa4 100644 --- a/src/devices/bus/acorn/cms/fdc.cpp +++ b/src/devices/bus/acorn/cms/fdc.cpp @@ -73,7 +73,6 @@ cms_fdc_device::cms_fdc_device(const machine_config &mconfig, const char *tag, d void cms_fdc_device::device_start() { - set_acorn_bus_device(); address_space &space = m_bus->memspace(); space.install_readwrite_handler(0xfc50, 0xfc5f, read8_delegate(FUNC(cms_fdc_device::wd1770_state_r), this), write8_delegate(FUNC(cms_fdc_device::wd1770_control_w), this)); @@ -122,4 +121,4 @@ WRITE_LINE_MEMBER(cms_fdc_device::bus_nmi_w) WRITE_LINE_MEMBER(cms_fdc_device::bus_irq_w) { m_bus->irq_w(state); -}
\ No newline at end of file +} diff --git a/src/devices/bus/acorn/cms/hires.cpp b/src/devices/bus/acorn/cms/hires.cpp index 35ef26fd598..d15032bd30c 100644 --- a/src/devices/bus/acorn/cms/hires.cpp +++ b/src/devices/bus/acorn/cms/hires.cpp @@ -68,7 +68,6 @@ cms_hires_device::cms_hires_device(const machine_config &mconfig, const char *ta void cms_hires_device::device_start() { - set_acorn_bus_device(); address_space &space = m_bus->memspace(); space.install_readwrite_handler(0xfc10, 0xfc1f, read8_delegate(FUNC(ef9365_device::data_r), m_gdp.target()), write8_delegate(FUNC(ef9365_device::data_w), m_gdp.target())); |