diff options
Diffstat (limited to 'src/devices/machine/cr511b.h')
-rw-r--r-- | src/devices/machine/cr511b.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/cr511b.h b/src/devices/machine/cr511b.h index 16d58151d91..b3de63c8aa6 100644 --- a/src/devices/machine/cr511b.h +++ b/src/devices/machine/cr511b.h @@ -52,8 +52,8 @@ public: auto scor_handler() { return m_scor_handler.bind(); } auto xaen_handler() { return m_xaen_handler.bind(); } - DECLARE_READ8_MEMBER( read ); - DECLARE_WRITE8_MEMBER ( write ); + uint8_t read(); + void write(uint8_t data); DECLARE_WRITE_LINE_MEMBER( enable_w ); DECLARE_WRITE_LINE_MEMBER( cmd_w ); |