summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tek405x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tek405x.cpp')
-rw-r--r--src/mame/drivers/tek405x.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/tek405x.cpp b/src/mame/drivers/tek405x.cpp
index 7400754590a..a047d58a773 100644
--- a/src/mame/drivers/tek405x.cpp
+++ b/src/mame/drivers/tek405x.cpp
@@ -179,7 +179,7 @@ void tek4051_state::tek4051_mem(address_map &map)
map(0x8798, 0x879b).rw(MC6820_TAPE_TAG, FUNC(pia6821_device::read), FUNC(pia6821_device::write));
map(0x87a8, 0x87ab).rw(MC6820_KB_TAG, FUNC(pia6821_device::read), FUNC(pia6821_device::write));
map(0x87b0, 0x87b3).rw(m_gpib_pia, FUNC(pia6821_device::read), FUNC(pia6821_device::write));
- map(0x87c0, 0x87c0).mirror(0x03).w(this, FUNC(tek4051_state::lbs_w));
+ map(0x87c0, 0x87c0).mirror(0x03).w(FUNC(tek4051_state::lbs_w));
// AM_RANGE(0x87c0, 0x87c3) AM_DEVREADWRITE(MC6820_COM_TAG, pia6821_device, read, write)
// AM_RANGE(0x87c4, 0x87c5) AM_MIRROR(0x02) AM_DEVREADWRITE(MC6850_TAG, acia6850_device, read, write)
// AM_RANGE(0x87c8, 0x87cb) XPC2
@@ -741,7 +741,7 @@ WRITE8_MEMBER( tek4051_state::dio_w )
if (m_talk)
{
- m_gpib->dio_w(data);
+ m_gpib->write_dio(data);
}
}
@@ -824,7 +824,7 @@ WRITE_LINE_MEMBER( tek4051_state::talk_w )
if (!m_talk)
{
- m_gpib->dio_w(0xff);
+ m_gpib->write_dio(0xff);
m_gpib->nrfd_w(1);
m_gpib->ndac_w(1);
}