summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/softbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/softbox.cpp')
-rw-r--r--src/mame/drivers/softbox.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/softbox.cpp b/src/mame/drivers/softbox.cpp
index 6a730054c20..4e41e30b84a 100644
--- a/src/mame/drivers/softbox.cpp
+++ b/src/mame/drivers/softbox.cpp
@@ -109,8 +109,8 @@
WRITE8_MEMBER( softbox_state::dbrg_w )
{
- m_dbrg->str_w(data & 0x0f);
- m_dbrg->stt_w(data >> 4);
+ m_dbrg->write_str(data & 0x0f);
+ m_dbrg->write_stt(data >> 4);
}
@@ -139,7 +139,7 @@ void softbox_state::softbox_io(address_map &map)
map.global_mask(0xff);
map(0x08, 0x08).rw(I8251_TAG, FUNC(i8251_device::data_r), FUNC(i8251_device::data_w));
map(0x09, 0x09).rw(I8251_TAG, FUNC(i8251_device::status_r), FUNC(i8251_device::control_w));
- map(0x0c, 0x0c).w(this, FUNC(softbox_state::dbrg_w));
+ map(0x0c, 0x0c).w(FUNC(softbox_state::dbrg_w));
map(0x10, 0x13).rw(I8255_0_TAG, FUNC(i8255_device::read), FUNC(i8255_device::write));
map(0x14, 0x17).rw(I8255_1_TAG, FUNC(i8255_device::read), FUNC(i8255_device::write));
map(0x18, 0x18).rw(m_hdc, FUNC(corvus_hdc_device::read), FUNC(corvus_hdc_device::write));
@@ -182,12 +182,12 @@ INPUT_PORTS_END
READ8_MEMBER( softbox_state::ppi0_pa_r )
{
- return m_ieee->dio_r() ^ 0xff;
+ return m_ieee->read_dio() ^ 0xff;
}
WRITE8_MEMBER( softbox_state::ppi0_pb_w )
{
- m_ieee->dio_w(data ^ 0xff);
+ m_ieee->write_dio(data ^ 0xff);
}
//-------------------------------------------------