summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pc_kbd/ec1841.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/pc_kbd/ec1841.h')
-rw-r--r--src/devices/bus/pc_kbd/ec1841.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/pc_kbd/ec1841.h b/src/devices/bus/pc_kbd/ec1841.h
index 72e9dc639d0..08309b35d9e 100644
--- a/src/devices/bus/pc_kbd/ec1841.h
+++ b/src/devices/bus/pc_kbd/ec1841.h
@@ -43,10 +43,10 @@ protected:
virtual DECLARE_WRITE_LINE_MEMBER( data_write ) override;
private:
- DECLARE_WRITE8_MEMBER( bus_w );
- DECLARE_READ8_MEMBER( p1_r );
- DECLARE_WRITE8_MEMBER( p1_w );
- DECLARE_WRITE8_MEMBER( p2_w );
+ void bus_w(uint8_t data);
+ uint8_t p1_r();
+ void p1_w(uint8_t data);
+ void p2_w(uint8_t data);
DECLARE_READ_LINE_MEMBER( t1_r );
required_device<i8048_device> m_maincpu;