diff options
Diffstat (limited to 'src/devices/cpu/m68000/m68000.h')
-rw-r--r-- | src/devices/cpu/m68000/m68000.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/m68000/m68000.h b/src/devices/cpu/m68000/m68000.h index f97fd11c1c7..a53042f3018 100644 --- a/src/devices/cpu/m68000/m68000.h +++ b/src/devices/cpu/m68000/m68000.h @@ -11,7 +11,7 @@ class m68000_device : public m68000_base_device { public: // construction/destruction - m68000_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock); + m68000_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); virtual std::unique_ptr<util::disasm_interface> create_disassembler() override; @@ -23,9 +23,9 @@ public: virtual void device_start() override; protected: - m68000_device(const machine_config &mconfig, const device_type type, const char *tag, device_t *owner, u32 clock); + m68000_device(const machine_config &mconfig, const device_type type, const char *tag, device_t *owner, const XTAL &clock); - m68000_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock, + m68000_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock, const device_type type, u32 prg_data_width, u32 prg_address_bits, address_map_constructor internal_map); }; |