summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ie15.cpp
blob: 747e99188526b9cb19a1bff4f26c22060b9e8ab3 (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
// 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.h"
//nclude "ie15.lh"

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")
	{ }

	required_device<ie15_device> m_ie15;
};


static MACHINE_CONFIG_START( ie15, ie15_state )
	MCFG_DEVICE_ADD("ie15", IE15, 0)
MACHINE_CONFIG_END


ROM_START(ie15)
ROM_END

/*    YEAR  NAME      PARENT  COMPAT   MACHINE    INPUT    INIT                      COMPANY     FULLNAME       FLAGS */
COMP( 1980, ie15,     0,      0,       ie15,      0,       driver_device,     0,     "USSR",     "15IE-00-013", 0)