diff options
Diffstat (limited to 'src/devices/cpu/h8/h83006.h')
-rw-r--r-- | src/devices/cpu/h8/h83006.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/h8/h83006.h b/src/devices/cpu/h8/h83006.h index 083b91ea664..65fdc9fe211 100644 --- a/src/devices/cpu/h8/h83006.h +++ b/src/devices/cpu/h8/h83006.h @@ -27,7 +27,7 @@ class h83006_device : public h8h_device { public: - h83006_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + h83006_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); void set_mode_a20() { mode_a20 = true; } void set_mode_a24() { mode_a20 = false; } @@ -36,7 +36,7 @@ public: void syscr_w(uint8_t data); protected: - h83006_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, uint32_t start); + h83006_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, uint32_t start); required_device<h8h_intc_device> intc; required_device<h8_adc_device> adc; @@ -79,7 +79,7 @@ protected: class h83007_device : public h83006_device { public: - h83007_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + h83007_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; DECLARE_DEVICE_TYPE(H83006, h83006_device) |