diff options
| author | 2020-03-25 18:26:17 +0100 | |
|---|---|---|
| committer | 2020-03-25 18:26:17 +0100 | |
| commit | dc83375dcaaecddc3302cc9eddb0e39b17cb3f04 (patch) | |
| tree | 82dcab9a2efc60b449f3c5a53cc0bee5437b2d46 /src/devices/machine/cr511b.cpp | |
| parent | 3a15530fa5afafd6fff1e226ffce9aabb0993b3c (diff) | |
devices/machine: simplified more handlers (nw)
Diffstat (limited to 'src/devices/machine/cr511b.cpp')
| -rw-r--r-- | src/devices/machine/cr511b.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/cr511b.cpp b/src/devices/machine/cr511b.cpp index 6a4309f12c9..ea9d772fb92 100644 --- a/src/devices/machine/cr511b.cpp +++ b/src/devices/machine/cr511b.cpp @@ -96,12 +96,12 @@ void cr511b_device::device_timer(emu_timer &timer, device_timer_id tid, int para // IMPLEMENTATION //************************************************************************** -READ8_MEMBER( cr511b_device::read ) +uint8_t cr511b_device::read() { return 0xff; } -WRITE8_MEMBER ( cr511b_device::write ) +void cr511b_device::write(uint8_t data) { } |
