diff options
Diffstat (limited to 'src/devices/bus/pofo/hpc104.h')
-rw-r--r-- | src/devices/bus/pofo/hpc104.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/pofo/hpc104.h b/src/devices/bus/pofo/hpc104.h index d5d1c36c3d3..45a78faec87 100644 --- a/src/devices/bus/pofo/hpc104.h +++ b/src/devices/bus/pofo/hpc104.h @@ -28,10 +28,10 @@ class pofo_hpc104_device : public device_t, { public: // construction/destruction - pofo_hpc104_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + pofo_hpc104_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: - pofo_hpc104_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + pofo_hpc104_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); // device-level overrides virtual void device_start() override; @@ -71,7 +71,7 @@ class pofo_hpc104_2_device : public pofo_hpc104_device { public: // construction/destruction - pofo_hpc104_2_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + pofo_hpc104_2_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); // optional information overrides virtual ioport_constructor device_input_ports() const override; |