diff options
Diffstat (limited to 'src/devices/cpu/g65816/g65816.h')
-rw-r--r-- | src/devices/cpu/g65816/g65816.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/g65816/g65816.h b/src/devices/cpu/g65816/g65816.h index b21845e76ec..37a750806fd 100644 --- a/src/devices/cpu/g65816/g65816.h +++ b/src/devices/cpu/g65816/g65816.h @@ -54,7 +54,7 @@ public: }; // construction/destruction - g65816_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + g65816_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); auto wdm_handler() { return m_wdm_w.bind(); } @@ -68,7 +68,7 @@ public: }; protected: - g65816_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, int cpu_type, address_map_constructor internal); + g65816_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, int cpu_type, address_map_constructor internal); // device-level overrides virtual void device_start() override; @@ -1543,14 +1543,14 @@ protected: class g65802_device : public g65816_device { public: - g65802_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + g65802_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; class _5a22_device : public g65816_device { public: - _5a22_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + _5a22_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); void wrmpya_w(uint8_t data); void wrmpyb_w(uint8_t data); |