blob: 852c2d9ba066f25e86d35a7ba4ec03852eee5c2e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// license:BSD-3-Clause
// copyright-holders:Joakim Larsson Edström
#ifndef MAME_MACHINE_EISPC_KB_H
#define MAME_MACHINE_EISPC_KB_H
#pragma once
#include "cpu/m6800/m6801.h"
DECLARE_DEVICE_TYPE(EISPC_KB, eispc_keyboard_device)
class eispc_keyboard_device : public device_t
{
public:
auto txd_cb() { return m_txd_cb.bind(); }
auto caps_cb() { return m_led_caps_cb.bind(); }
auto num_cb() { return m_led_num_cb.bind(); }
auto scroll_cb() { return m_led_scroll_cb.bind(); }
eispc_keyboard_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock = XTAL());
DECLARE_INPUT_CHANGED_MEMBER(key);
DECLARE_WRITE_LINE_MEMBER(rxd_w);
DECLARE_WRITE_LINE_MEMBER(hold_w);
DECLARE_WRITE_LINE_MEMBER(rst_line_w);
protected:
virtual void device_start() override;
virtual void device_add_mconfig(machine_config &config) override;
virtual ioport_constructor device_input_ports() const override;
virtual tiny_rom_entry const *device_rom_region() const override;
required_device<m6801_cpu_device> m_mcu;
required_ioport_array<6> m_rows;
devcb_write_line m_txd_cb; // Callback for KBD-> EPC
devcb_write_line m_led_caps_cb; // Callback for Caps led -> layout
devcb_write_line m_led_num_cb; // Callback for Num led -> layout
devcb_write_line m_led_scroll_cb; // Callback for Scroll led -> layout
bool m_rxd_high; // state of Rx input line
bool m_txd_high; // state of Tx output line
bool m_hold;
uint16_t m_col_select;
uint8_t m_p1;
void eispc_kb_mem(address_map &map);
};
#endif // MAME_MACHINE_EISPC_KB_H
|