diff options
author | 2022-06-16 12:47:52 +0200 | |
---|---|---|
committer | 2025-04-29 23:06:41 +0200 | |
commit | 45d4cd52a8194f2ef9e0383cfb2e2a35634af6ff (patch) | |
tree | 4e8d8fcb7382a5e9e0bce5ec59939bcfbe67155a /src/devices/machine/spg2xx_audio.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/machine/spg2xx_audio.h')
-rw-r--r-- | src/devices/machine/spg2xx_audio.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/spg2xx_audio.h b/src/devices/machine/spg2xx_audio.h index d0712139134..dd785f44cfe 100644 --- a/src/devices/machine/spg2xx_audio.h +++ b/src/devices/machine/spg2xx_audio.h @@ -17,8 +17,8 @@ class spg2xx_audio_device : public device_t, public device_sound_interface { public: - spg2xx_audio_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); - spg2xx_audio_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + spg2xx_audio_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); + spg2xx_audio_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); auto space_read_callback() { return m_space_read_cb.bind(); } auto write_irq_callback() { return m_irq_cb.bind(); } @@ -381,7 +381,7 @@ private: class spg110_audio_device : public spg2xx_audio_device { public: - spg110_audio_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + spg110_audio_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); virtual void audio_w(offs_t offset, uint16_t data) override; @@ -395,7 +395,7 @@ public: class sunplus_gcm394_audio_device : public spg2xx_audio_device { public: - sunplus_gcm394_audio_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + sunplus_gcm394_audio_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); uint16_t control_r(offs_t offset); void control_w(offs_t offset, uint16_t data); |