summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pc_kbd/pc83.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/pc_kbd/pc83.h')
-rw-r--r--src/devices/bus/pc_kbd/pc83.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/pc_kbd/pc83.h b/src/devices/bus/pc_kbd/pc83.h
index 6b800c7b8a0..1401a96ff13 100644
--- a/src/devices/bus/pc_kbd/pc83.h
+++ b/src/devices/bus/pc_kbd/pc83.h
@@ -45,9 +45,9 @@ protected:
virtual DECLARE_WRITE_LINE_MEMBER( data_write ) override { };
private:
- DECLARE_WRITE8_MEMBER( bus_w );
- DECLARE_READ8_MEMBER( p1_r );
- DECLARE_WRITE8_MEMBER( p2_w );
+ void bus_w(uint8_t data);
+ uint8_t p1_r();
+ void p2_w(uint8_t data);
DECLARE_READ_LINE_MEMBER( t0_r );
required_device<i8048_device> m_maincpu;