summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pc_joy/pc_joy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/pc_joy/pc_joy.h')
-rw-r--r--src/devices/bus/pc_joy/pc_joy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/pc_joy/pc_joy.h b/src/devices/bus/pc_joy/pc_joy.h
index d66636c3ad5..e09520f6436 100644
--- a/src/devices/bus/pc_joy/pc_joy.h
+++ b/src/devices/bus/pc_joy/pc_joy.h
@@ -37,8 +37,8 @@ class pc_joy_device : public device_t, public device_single_card_slot_interface<
public:
pc_joy_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
- DECLARE_READ8_MEMBER(joy_port_r);
- DECLARE_WRITE8_MEMBER(joy_port_w);
+ uint8_t joy_port_r();
+ void joy_port_w(uint8_t data);
protected:
virtual void device_start() override { m_stime = machine().time(); }