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.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/drivers/tek405x.cpp b/src/mame/drivers/tek405x.cpp
index a047d58a773..6e206c4a699 100644
--- a/src/mame/drivers/tek405x.cpp
+++ b/src/mame/drivers/tek405x.cpp
@@ -627,13 +627,13 @@ WRITE8_MEMBER( tek4051_state::kb_pia_pb_w )
m_lamps[2] = BIT(~data, 7);
// end or identify
- m_gpib->eoi_w(!BIT(data, 4));
+ m_gpib->host_eoi_w(!BIT(data, 4));
// speaker
m_speaker->level_w(!BIT(data, 7));
// remote enable
- m_gpib->ren_w(!BIT(data, 7));
+ m_gpib->host_ren_w(!BIT(data, 7));
}
WRITE_LINE_MEMBER( tek4051_state::kb_halt_w )
@@ -800,21 +800,21 @@ WRITE8_MEMBER( tek4051_state::gpib_pia_pb_w )
*/
// end or identify
- m_gpib->eoi_w(!BIT(data, 0));
+ m_gpib->host_eoi_w(!BIT(data, 0));
// interface clear
- m_gpib->ifc_w(!BIT(data, 1));
+ m_gpib->host_ifc_w(!BIT(data, 1));
// attention
- m_gpib->atn_w(BIT(data, 3));
+ m_gpib->host_atn_w(BIT(data, 3));
if (m_talk)
{
// not ready for data
- m_gpib->nrfd_w(!BIT(data, 4));
+ m_gpib->host_nrfd_w(!BIT(data, 4));
// not data acknowledged
- m_gpib->ndac_w(!BIT(data, 7));
+ m_gpib->host_ndac_w(!BIT(data, 7));
}
}
@@ -825,8 +825,8 @@ WRITE_LINE_MEMBER( tek4051_state::talk_w )
if (!m_talk)
{
m_gpib->write_dio(0xff);
- m_gpib->nrfd_w(1);
- m_gpib->ndac_w(1);
+ m_gpib->host_nrfd_w(1);
+ m_gpib->host_ndac_w(1);
}
}