diff options
Diffstat (limited to 'src/devices/cpu/nuon')
-rw-r--r-- | src/devices/cpu/nuon/nuon.cpp | 2 | ||||
-rw-r--r-- | src/devices/cpu/nuon/nuon.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/nuon/nuon.cpp b/src/devices/cpu/nuon/nuon.cpp index 00d35cddc39..e45908b450f 100644 --- a/src/devices/cpu/nuon/nuon.cpp +++ b/src/devices/cpu/nuon/nuon.cpp @@ -22,7 +22,7 @@ DEFINE_DEVICE_TYPE(NUON, nuon_device, "nuon", "Aries 3 \"Nuon\"") // nuon_device - constructor //------------------------------------------------- -nuon_device::nuon_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +nuon_device::nuon_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : cpu_device(mconfig, NUON, tag, owner, clock) , m_program_configs{{"program_mpe0", ENDIANNESS_BIG, 32, 32}, {"program_mpe1", ENDIANNESS_BIG, 32, 32}, diff --git a/src/devices/cpu/nuon/nuon.h b/src/devices/cpu/nuon/nuon.h index f3a7311e985..ecdb5cc6d76 100644 --- a/src/devices/cpu/nuon/nuon.h +++ b/src/devices/cpu/nuon/nuon.h @@ -20,7 +20,7 @@ class nuon_device : public cpu_device { public: - nuon_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + nuon_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // device-level overrides |