diff options
author | 2016-04-27 08:13:59 +0200 | |
---|---|---|
committer | 2016-04-27 08:13:59 +0200 | |
commit | cfee536f22f032c7ead65075f73cc6fd8549e68b (patch) | |
tree | f4b4703dd0295571684456c19668f508b3ddcb3a /src/devices/bus/sat_ctrl/joy_md.h | |
parent | be8159d01eaa7533e7758bf07384501dbc6214f3 (diff) |
Cleanups and version bumpmame0173
Diffstat (limited to 'src/devices/bus/sat_ctrl/joy_md.h')
-rw-r--r-- | src/devices/bus/sat_ctrl/joy_md.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/sat_ctrl/joy_md.h b/src/devices/bus/sat_ctrl/joy_md.h index 2f178a413de..8c2505aad5e 100644 --- a/src/devices/bus/sat_ctrl/joy_md.h +++ b/src/devices/bus/sat_ctrl/joy_md.h @@ -35,7 +35,7 @@ protected: // device-level overrides virtual void device_start() override {}; virtual void device_reset() override {}; - + // device_saturn_control_port_interface overrides virtual UINT8 read_ctrl(UINT8 offset) override; virtual UINT8 read_status() override { return 0xf1; } @@ -54,20 +54,20 @@ class saturn_joymd6b_device : public device_t, public: // construction/destruction saturn_joymd6b_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - + // optional information overrides virtual ioport_constructor device_input_ports() const override; - + protected: // device-level overrides virtual void device_start() override {}; virtual void device_reset() override {}; - + // device_saturn_control_port_interface overrides virtual UINT8 read_ctrl(UINT8 offset) override; virtual UINT8 read_status() override { return 0xf1; } virtual UINT8 read_id(int idx) override { return m_ctrl_id; } - + private: required_ioport m_joy; }; |