diff options
Diffstat (limited to 'src/devices/cpu/z80/ez80.cpp')
-rw-r--r-- | src/devices/cpu/z80/ez80.cpp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/devices/cpu/z80/ez80.cpp b/src/devices/cpu/z80/ez80.cpp new file mode 100644 index 00000000000..525dc1c3b11 --- /dev/null +++ b/src/devices/cpu/z80/ez80.cpp @@ -0,0 +1,39 @@ +// license:BSD-3-Clause +// copyright-holders:AJR +/*************************************************************************** + + Zilog eZ80 CPU + + TODO: all differences from Z80 + +***************************************************************************/ + +#include "emu.h" +#include "ez80.h" + + +//************************************************************************** +// GLOBAL VARIABLES +//************************************************************************** + +// device type definition +DEFINE_DEVICE_TYPE(EZ80, ez80_device, "ez80", "Zilog eZ80") + + +//************************************************************************** +// DEVICE IMPLEMENTATION +//************************************************************************** + +//------------------------------------------------- +// ez80_device - constructor +//------------------------------------------------- + +ez80_device::ez80_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock) + : z80_device(mconfig, type, tag, owner, clock) +{ +} + +ez80_device::ez80_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) + : ez80_device(mconfig, EZ80, tag, owner, clock) +{ +} |