diff options
author | 2019-07-20 12:31:21 +1000 | |
---|---|---|
committer | 2019-07-20 12:31:21 +1000 | |
commit | d2926fa02cef5bf728eac74c9e5586aced02a80b (patch) | |
tree | 820d62305954ff68c7c8bb87c8a08d1b7ce4b2c3 /src/devices/machine/i8212.cpp | |
parent | 24c462dbdb4ed2992af2f8767bf9c56979e7f1be (diff) | |
parent | 68139508715a0375e657add4197582271ef446ec (diff) |
Merge remote-tracking branch 'upstream/master'
# Conflicts:
# src/emu/digfx.h
Diffstat (limited to 'src/devices/machine/i8212.cpp')
-rw-r--r-- | src/devices/machine/i8212.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/i8212.cpp b/src/devices/machine/i8212.cpp index c6428fe7c13..c6cf46eafe5 100644 --- a/src/devices/machine/i8212.cpp +++ b/src/devices/machine/i8212.cpp @@ -120,7 +120,7 @@ void i8212_device::device_reset() // read - data latch read //------------------------------------------------- -READ8_MEMBER(i8212_device::read) +uint8_t i8212_device::read() { if (!machine().side_effects_disabled()) { @@ -150,7 +150,7 @@ IRQ_CALLBACK_MEMBER(i8212_device::inta_cb) // write - data latch write //------------------------------------------------- -WRITE8_MEMBER(i8212_device::write) +void i8212_device::write(uint8_t data) { // clear interrupt line m_write_int(CLEAR_LINE); @@ -171,7 +171,7 @@ WRITE8_MEMBER(i8212_device::write) // strobe - data input strobe //------------------------------------------------- -WRITE8_MEMBER(i8212_device::strobe) +void i8212_device::strobe(uint8_t data) { if (get_mode() == mode::INPUT) { |