diff options
Diffstat (limited to 'src/devices/cpu/m88000')
-rw-r--r-- | src/devices/cpu/m88000/m88000.cpp | 2 | ||||
-rw-r--r-- | src/devices/cpu/m88000/m88000.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/m88000/m88000.cpp b/src/devices/cpu/m88000/m88000.cpp index f3921bc8667..89d369d4020 100644 --- a/src/devices/cpu/m88000/m88000.cpp +++ b/src/devices/cpu/m88000/m88000.cpp @@ -127,7 +127,7 @@ enum fcr_mask : u32 // device type definitions DEFINE_DEVICE_TYPE(MC88100, mc88100_device, "mc88100", "Motorola MC88100") -mc88100_device::mc88100_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) +mc88100_device::mc88100_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : cpu_device(mconfig, MC88100, tag, owner, clock) , m_code_config("code", ENDIANNESS_BIG, 32, 32, 0) , m_data_config("data", ENDIANNESS_BIG, 32, 32, 0) diff --git a/src/devices/cpu/m88000/m88000.h b/src/devices/cpu/m88000/m88000.h index 896ab05df51..cb361970f1a 100644 --- a/src/devices/cpu/m88000/m88000.h +++ b/src/devices/cpu/m88000/m88000.h @@ -17,7 +17,7 @@ class mc88100_device : public cpu_device { public: // construction/destruction - mc88100_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock); + mc88100_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // device-level overrides |