blob: 3cc5cbec604363f2fe5c8d4b2a109b5bc0495557 (
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
/***************************************************************************
Zilog eZ80 CPU
***************************************************************************/
#ifndef MAME_CPU_Z80_EZ80_H
#define MAME_CPU_Z80_EZ80_H
#pragma once
#include "z80.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
class ez80_device : public z80_device
{
public:
// device type constructor
ez80_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
protected:
// construction/destruction
ez80_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock);
};
// device type declaration
DECLARE_DEVICE_TYPE(EZ80, ez80_device)
#endif // MAME_CPU_Z80_EZ80_H
|