summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/z80/ez80.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/z80/ez80.h')
-rw-r--r--src/devices/cpu/z80/ez80.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/devices/cpu/z80/ez80.h b/src/devices/cpu/z80/ez80.h
new file mode 100644
index 00000000000..2ae563d5b80
--- /dev/null
+++ b/src/devices/cpu/z80/ez80.h
@@ -0,0 +1,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, u32 clock);
+
+protected:
+ // construction/destruction
+ ez80_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock);
+};
+
+// device type declaration
+DECLARE_DEVICE_TYPE(EZ80, ez80_device)
+
+#endif // MAME_CPU_Z80_EZ80_H