summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pc_kbd/pcxt83.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/pc_kbd/pcxt83.h')
-rw-r--r--src/devices/bus/pc_kbd/pcxt83.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/bus/pc_kbd/pcxt83.h b/src/devices/bus/pc_kbd/pcxt83.h
index d2e7175e8c4..d12ceade4fc 100644
--- a/src/devices/bus/pc_kbd/pcxt83.h
+++ b/src/devices/bus/pc_kbd/pcxt83.h
@@ -40,16 +40,16 @@ protected:
virtual ioport_constructor device_input_ports() const override;
// device_pc_kbd_interface overrides
- virtual DECLARE_WRITE_LINE_MEMBER( clock_write ) override;
- virtual DECLARE_WRITE_LINE_MEMBER( data_write ) override;
+ virtual void clock_write(int state) override;
+ virtual void data_write(int state) override;
private:
- DECLARE_READ8_MEMBER( bus_r );
- DECLARE_WRITE8_MEMBER( bus_w );
- DECLARE_WRITE8_MEMBER( p1_w );
- DECLARE_WRITE8_MEMBER( p2_w );
- DECLARE_READ_LINE_MEMBER( t0_r );
- DECLARE_READ_LINE_MEMBER( t1_r );
+ uint8_t bus_r();
+ void bus_w(uint8_t data);
+ void p1_w(uint8_t data);
+ void p2_w(uint8_t data);
+ int t0_r();
+ int t1_r();
required_device<i8048_device> m_maincpu;
required_ioport_array<12> m_md;