summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vip/vp620.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vip/vp620.h')
-rw-r--r--src/devices/bus/vip/vp620.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/devices/bus/vip/vp620.h b/src/devices/bus/vip/vp620.h
new file mode 100644
index 00000000000..67400cd2304
--- /dev/null
+++ b/src/devices/bus/vip/vp620.h
@@ -0,0 +1,57 @@
+// license:BSD-3-Clause
+// copyright-holders:Curt Coder
+/**********************************************************************
+
+ RCA VIP ASCII Keyboard Interface VP-620 emulation
+
+**********************************************************************/
+
+#pragma once
+
+#ifndef __VP620__
+#define __VP620__
+
+#include "emu.h"
+#include "byteio.h"
+#include "machine/keyboard.h"
+
+
+
+//**************************************************************************
+// TYPE DEFINITIONS
+//**************************************************************************
+
+// ======================> vp620_device
+
+class vp620_device : public device_t,
+ public device_vip_byteio_port_interface
+{
+public:
+ // construction/destruction
+ vp620_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+
+ // optional information overrides
+ virtual machine_config_constructor device_mconfig_additions() const;
+
+ // not really public
+ DECLARE_WRITE8_MEMBER( kb_w );
+
+protected:
+ // device-level overrides
+ virtual void device_start();
+
+ // device_vip_byteio_port_interface overrides
+ virtual UINT8 vip_in_r();
+ virtual int vip_ef4_r();
+
+private:
+ UINT8 m_keydata;
+ int m_keystb;
+};
+
+
+// device type definition
+extern const device_type VP620;
+
+
+#endif