summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/neogeo_ctrl/joystick.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-04-28 21:11:02 +1000
committer Vas Crabb <vas@vastheman.com>2018-04-28 21:32:21 +1000
commit69ab2c544ba32b617abdefe0e2c4406c43077bfd (patch)
tree972e0f92dcac19941e23074a3e952a4d713e269f /src/devices/bus/neogeo_ctrl/joystick.h
parentf2568bb918b8e551c1b95d4a86cf07ae192cbe80 (diff)
neogeo updates:
* move start buttons to controllers, clean up FTC1B a little * SIT and FTC1B are only compatible with MV-1B/MV-1C cost-reduced boards
Diffstat (limited to 'src/devices/bus/neogeo_ctrl/joystick.h')
-rw-r--r--src/devices/bus/neogeo_ctrl/joystick.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/devices/bus/neogeo_ctrl/joystick.h b/src/devices/bus/neogeo_ctrl/joystick.h
index 605ea8d8d90..bf07ec90b9b 100644
--- a/src/devices/bus/neogeo_ctrl/joystick.h
+++ b/src/devices/bus/neogeo_ctrl/joystick.h
@@ -50,21 +50,19 @@ public:
// construction/destruction
neogeo_joy_ac_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- // optional information overrides
- virtual ioport_constructor device_input_ports() const override;
-
protected:
// device-level overrides
+ virtual ioport_constructor device_input_ports() const override;
virtual void device_start() override;
- virtual void device_reset() override;
// device_neogeo_ctrl_edge_interface overrides
virtual DECLARE_READ8_MEMBER( in0_r ) override;
virtual DECLARE_READ8_MEMBER( in1_r ) override;
+ virtual uint8_t read_start_sel() override;
private:
- required_ioport m_joy1;
- required_ioport m_joy2;
+ required_ioport_array<2> m_joy;
+ required_ioport m_ss;
};