diff options
Diffstat (limited to 'src/devices/cpu/z8000/z8000.h')
-rw-r--r-- | src/devices/cpu/z8000/z8000.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/z8000/z8000.h b/src/devices/cpu/z8000/z8000.h index 59ae874e349..41b7ee961fd 100644 --- a/src/devices/cpu/z8000/z8000.h +++ b/src/devices/cpu/z8000/z8000.h @@ -36,7 +36,7 @@ class z8002_device : public cpu_device public: // construction/destruction z8002_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); - z8002_device(const machine_config &mconfig, device_type type, const char *name, std::string tag, device_t *owner, UINT32 clock, const char *shortname, const char *source); + z8002_device(const machine_config &mconfig, device_type type, std::string name, std::string tag, device_t *owner, UINT32 clock, std::string shortname, std::string source); ~z8002_device(); template<class _Object> static devcb_base &set_mo_callback(device_t &device, _Object object) { return downcast<z8002_device &>(device).m_mo_out.set_callback(object); } |