diff options
Diffstat (limited to 'src/devices/machine/sa1110.h')
-rw-r--r-- | src/devices/machine/sa1110.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/sa1110.h b/src/devices/machine/sa1110.h index 3ef8e79042b..4a704562716 100644 --- a/src/devices/machine/sa1110.h +++ b/src/devices/machine/sa1110.h @@ -23,13 +23,13 @@ class sa1110_periphs_device : public device_t, public device_serial_interface { public: template <typename T> - sa1110_periphs_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock, T &&cpu_tag) + sa1110_periphs_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock, T &&cpu_tag) : sa1110_periphs_device(mconfig, tag, owner, clock) { m_maincpu.set_tag(std::forward<T>(cpu_tag)); } - sa1110_periphs_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + sa1110_periphs_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); template <typename T> void set_codec_tag(T &&tag) { m_codec.set_tag(std::forward<T>(tag)); } |