diff options
Diffstat (limited to 'src/mess/machine/a2echoii.c')
-rw-r--r-- | src/mess/machine/a2echoii.c | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/src/mess/machine/a2echoii.c b/src/mess/machine/a2echoii.c index e59f3ba9c71..c2b89bcdb70 100644 --- a/src/mess/machine/a2echoii.c +++ b/src/mess/machine/a2echoii.c @@ -47,17 +47,17 @@ machine_config_constructor a2bus_echoii_device::device_mconfig_additions() const //************************************************************************** a2bus_echoii_device::a2bus_echoii_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock) : - device_t(mconfig, type, name, tag, owner, clock), - device_a2bus_card_interface(mconfig, *this), - m_tms(*this, TMS_TAG) + device_t(mconfig, type, name, tag, owner, clock), + device_a2bus_card_interface(mconfig, *this), + m_tms(*this, TMS_TAG) { m_shortname = "a2echoii"; } a2bus_echoii_device::a2bus_echoii_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : - device_t(mconfig, A2BUS_ECHOII, "Street Electronics Echo II", tag, owner, clock), - device_a2bus_card_interface(mconfig, *this), - m_tms(*this, TMS_TAG) + device_t(mconfig, A2BUS_ECHOII, "Street Electronics Echo II", tag, owner, clock), + device_a2bus_card_interface(mconfig, *this), + m_tms(*this, TMS_TAG) { m_shortname = "a2echoii"; } @@ -78,27 +78,26 @@ void a2bus_echoii_device::device_reset() UINT8 a2bus_echoii_device::read_c0nx(address_space &space, UINT8 offset) { - switch (offset) - { - case 0: - return 0x1f | tms5220_status_r(m_tms, space, 0); - } + switch (offset) + { + case 0: + return 0x1f | tms5220_status_r(m_tms, space, 0); + } - return 0; + return 0; } void a2bus_echoii_device::write_c0nx(address_space &space, UINT8 offset, UINT8 data) { - switch (offset) - { - case 0: - tms5220_data_w(m_tms, space, offset, data); - break; - } + switch (offset) + { + case 0: + tms5220_data_w(m_tms, space, offset, data); + break; + } } bool a2bus_echoii_device::take_c800() { - return false; + return false; } - |