summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/z80/kl5c80a12.h
blob: 14fa9cc86dcb567d9379b5a00c7258fdd093bd31 (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
50
51
52
53
54
55
56
57
58
59
60
/***************************************************************************

	Kawasaki LSI
	KL5C80A12 CPU (KL5C80A12CFP on hng64.c)

	Binary compatible with Z80, significantly faster opcode timings, operating at up to 10Mhz
	Timers / Counters, Parrallel / Serial ports/ MMU, Interrupt Controller

	(is this different enough to need it's own core?)
	(todo: everything, some code currently lives in machine/hng64_net.c but not much)

***************************************************************************/

#pragma once

#ifndef __KL5C80A12__
#define __KL5C80A12__

#include "emu.h"
#include "z80.h"
#include "machine/z80ctc.h"


/***************************************************************************
    DEVICE CONFIGURATION MACROS
***************************************************************************/


/***************************************************************************
    TYPE DEFINITIONS
***************************************************************************/

class kl5c80a12_device : public z80_device
{
public:
	kl5c80a12_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32);

	// static configuration helpers

protected:
	// device-level overrides
	virtual machine_config_constructor device_mconfig_additions() const;
	virtual void device_start();
	virtual void device_reset();


private:
	// devices/pointers

	// internal state

	// callbacks
};


// device type definition
extern const device_type KL5C80A12;


#endif /// __KL5C80A12__