diff options
author | 2020-05-13 18:25:16 +0200 | |
---|---|---|
committer | 2020-05-13 18:25:16 +0200 | |
commit | 56cf02734b424649b0e40770a502d2e2a6bb1a56 (patch) | |
tree | 6f9116351989dc9c1fd42355e9b62cefd23fe7c6 /src/devices/bus/hp80_io | |
parent | 04c5294ca0f2d3f3ba1e88405a793f9357f5ae01 (diff) |
simplified some handlers (nw)
Diffstat (limited to 'src/devices/bus/hp80_io')
-rw-r--r-- | src/devices/bus/hp80_io/82937.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/hp80_io/82937.cpp b/src/devices/bus/hp80_io/82937.cpp index c9a699cf539..dbd5eaecf58 100644 --- a/src/devices/bus/hp80_io/82937.cpp +++ b/src/devices/bus/hp80_io/82937.cpp @@ -158,7 +158,7 @@ READ8_MEMBER(hp82937_io_card_device::dio_r) if (m_dio_out) { return 0xff; } else { - return m_ieee488->read_dio(); + return m_ieee488->dio_r(); } } @@ -252,7 +252,7 @@ void hp82937_io_card_device::device_reset() void hp82937_io_card_device::update_data_out() { - m_ieee488->write_dio(m_dio_out ? m_cpu->p2_r() : 0xff); + m_ieee488->host_dio_w(m_dio_out ? m_cpu->p2_r() : 0xff); } void hp82937_io_card_device::update_signals() |