diff options
Diffstat (limited to 'src/devices/machine/lh5810.cpp')
-rw-r--r-- | src/devices/machine/lh5810.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/lh5810.cpp b/src/devices/machine/lh5810.cpp index 8e427ab3bcf..054a532dff0 100644 --- a/src/devices/machine/lh5810.cpp +++ b/src/devices/machine/lh5810.cpp @@ -96,7 +96,7 @@ void lh5810_device::device_reset() // data_r - data read //------------------------------------------------- -READ8_MEMBER( lh5810_device::data_r ) +uint8_t lh5810_device::data_r(offs_t offset) { switch (offset) { @@ -139,7 +139,7 @@ READ8_MEMBER( lh5810_device::data_r ) // data_w - data write //------------------------------------------------- -WRITE8_MEMBER( lh5810_device::data_w ) +void lh5810_device::data_w(offs_t offset, uint8_t data) { switch (offset) { |