summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vtech/memexp/rtty.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vtech/memexp/rtty.h')
-rw-r--r--src/devices/bus/vtech/memexp/rtty.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/vtech/memexp/rtty.h b/src/devices/bus/vtech/memexp/rtty.h
index 82c3b150f34..9868bef9bee 100644
--- a/src/devices/bus/vtech/memexp/rtty.h
+++ b/src/devices/bus/vtech/memexp/rtty.h
@@ -26,9 +26,9 @@ public:
// construction/destruction
vtech_rtty_interface_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_READ8_MEMBER( receive_data_r );
- DECLARE_WRITE8_MEMBER( transmit_data_w );
- DECLARE_WRITE8_MEMBER( relay_w );
+ uint8_t receive_data_r();
+ void transmit_data_w(uint8_t data);
+ void relay_w(uint8_t data);
protected:
virtual const tiny_rom_entry *device_rom_region() const override;