summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/m20_kbd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/m20_kbd.h')
-rw-r--r--src/mess/machine/m20_kbd.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/mess/machine/m20_kbd.h b/src/mess/machine/m20_kbd.h
deleted file mode 100644
index a3b9e770e77..00000000000
--- a/src/mess/machine/m20_kbd.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Carl
-#ifndef M20KBD_H_
-#define M20KBD_H_
-
-#include "bus/rs232/keyboard.h"
-
-class m20_keyboard_device : public serial_keyboard_device
-{
-public:
- m20_keyboard_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
- virtual ioport_constructor device_input_ports() const;
-
-protected:
- virtual void device_start();
- virtual void rcv_complete();
-
-private:
- void write(UINT8 data);
- virtual UINT8 keyboard_handler(UINT8 last_code, UINT8 *scan_line);
- UINT8 m_state[16];
-};
-
-extern const device_type M20_KEYBOARD;
-
-#endif /* M20KBD_H_ */