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
|
// license:BSD-3-Clause
// copyright-holders:Sergey Svishchev
/***************************************************************************
15IE-00-013 Terminal
A serial (RS232 or current loop) green-screen terminal, mostly VT52
compatible (no Hold Screen mode and no graphics character set).
Alternate character set (selected by SO/SI chars) is Cyrillic.
****************************************************************************/
#include "emu.h"
#include "machine/ie15_kbd.h"
#include "machine/ie15.h"
class ie15_state : public driver_device
{
public:
ie15_state(const machine_config &mconfig, device_type type, const char *tag) :
driver_device(mconfig, type, tag),
m_ie15(*this, "ie15")
{ }
void ie15(machine_config &config);
private:
required_device<ie15_device> m_ie15;
};
void ie15_state::ie15(machine_config &config)
{
IE15(config, m_ie15, 0);
}
ROM_START(ie15)
ROM_END
// YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS
COMP( 1980, ie15, 0, 0, ie15, 0, ie15_state, empty_init, "USSR", "15IE-00-013", 0)
|