blob: bef404155bf70eabe0a2fbf907e00f95831d3481 (
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
|
// license:BSD-3-Clause
// copyright-holders:AJR
/***************************************************************************
ASCII R800 CPU
TODO: this uses a sped-up Z80 core with added multiply instructions
('mulub', 'muluw').
***************************************************************************/
#include "emu.h"
#include "r800.h"
//**************************************************************************
// GLOBAL VARIABLES
//**************************************************************************
// device type definition
DEFINE_DEVICE_TYPE(R800, r800_device, "r800", "ASCII R800")
//**************************************************************************
// DEVICE IMPLEMENTATION
//**************************************************************************
//-------------------------------------------------
// r800_device - constructor
//-------------------------------------------------
r800_device::r800_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock)
: z80_device(mconfig, R800, tag, owner, clock)
{
}
|