diff options
Diffstat (limited to 'src/devices/machine/f3853.h')
-rw-r--r-- | src/devices/machine/f3853.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/machine/f3853.h b/src/devices/machine/f3853.h index f7d6adb3b5c..22eaae40fb2 100644 --- a/src/devices/machine/f3853.h +++ b/src/devices/machine/f3853.h @@ -67,7 +67,7 @@ class f3853_device : public device_t { public: // construction/destruction - f3853_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + f3853_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); auto int_req_callback() { return m_int_req_callback.bind(); } auto pri_out_callback() { return m_pri_out_callback.bind(); } @@ -84,7 +84,7 @@ public: IRQ_CALLBACK_MEMBER(int_acknowledge); protected: - f3853_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + f3853_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); // device-level overrides virtual void device_resolve_objects() override; @@ -119,7 +119,7 @@ protected: class f3851_device : public f3853_device { public: - f3851_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + f3851_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); // interrupt vector is a mask option on 3851 and 3856 void set_int_vector(u16 vector) { m_int_vector = vector; } @@ -134,7 +134,7 @@ public: virtual void write(offs_t offset, uint8_t data) override; protected: - f3851_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + f3851_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); virtual void device_resolve_objects() override; @@ -145,7 +145,7 @@ protected: class f3856_device : public f3851_device { public: - f3856_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + f3856_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); virtual uint8_t read(offs_t offset) override; virtual void write(offs_t offset, uint8_t data) override; @@ -153,7 +153,7 @@ public: virtual TIMER_CALLBACK_MEMBER(timer_callback) override; protected: - f3856_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + f3856_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); virtual void device_start() override; @@ -167,7 +167,7 @@ protected: class f38t56_device : public f3856_device { public: - f38t56_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + f38t56_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); virtual uint8_t read(offs_t offset) override; virtual void write(offs_t offset, uint8_t data) override; |