summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/cgenie/parallel/joystick.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/cgenie/parallel/joystick.h')
-rw-r--r--src/devices/bus/cgenie/parallel/joystick.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/devices/bus/cgenie/parallel/joystick.h b/src/devices/bus/cgenie/parallel/joystick.h
new file mode 100644
index 00000000000..28be43b00e6
--- /dev/null
+++ b/src/devices/bus/cgenie/parallel/joystick.h
@@ -0,0 +1,48 @@
+// license:GPL-2.0+
+// copyright-holders:Dirk Best
+/***************************************************************************
+
+ EACA Colour Genie Joystick Interface EG2013
+
+***************************************************************************/
+
+#pragma once
+
+#ifndef __CGENIE_PARALLEL_JOYSTICK_H__
+#define __CGENIE_PARALLEL_JOYSTICK_H__
+
+#include "emu.h"
+#include "parallel.h"
+
+
+//**************************************************************************
+// TYPE DEFINITIONS
+//**************************************************************************
+
+// ======================> cgenie_joystick_device
+
+class cgenie_joystick_device : public device_t, public device_parallel_interface
+{
+public:
+ // construction/destruction
+ cgenie_joystick_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+
+protected:
+ virtual void device_start();
+ virtual void device_reset();
+ virtual ioport_constructor device_input_ports() const;
+
+ virtual void pa_w(UINT8 data);
+ virtual UINT8 pb_r();
+
+private:
+ required_ioport_array<4> m_joy;
+ required_ioport_array<6> m_keypad;
+
+ UINT8 m_select;
+};
+
+// device type definition
+extern const device_type CGENIE_JOYSTICK;
+
+#endif // __CGENIE_PARALLEL_JOYSTICK_H__