diff options
Diffstat (limited to 'src/devices/machine/z80sti.h')
-rw-r--r-- | src/devices/machine/z80sti.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/z80sti.h b/src/devices/machine/z80sti.h index 521630dbe13..24c23964f3d 100644 --- a/src/devices/machine/z80sti.h +++ b/src/devices/machine/z80sti.h @@ -64,8 +64,8 @@ public: void set_rx_clock(int clock) { m_rx_clock = clock; } void set_tx_clock(int clock) { m_tx_clock = clock; } - DECLARE_READ8_MEMBER( read ); - DECLARE_WRITE8_MEMBER( write ); + uint8_t read(offs_t offset); + void write(offs_t offset, uint8_t data); DECLARE_WRITE_LINE_MEMBER( i0_w ); DECLARE_WRITE_LINE_MEMBER( i1_w ); |