summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/ymz770.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/ymz770.h')
-rw-r--r--src/devices/sound/ymz770.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/ymz770.h b/src/devices/sound/ymz770.h
index c8850b2e2bc..219e08e6da1 100644
--- a/src/devices/sound/ymz770.h
+++ b/src/devices/sound/ymz770.h
@@ -24,7 +24,7 @@ class ymz770_device : public device_t, public device_sound_interface
{
public:
// construction/destruction
- ymz770_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ ymz770_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
void write(offs_t offset, uint8_t data);
@@ -41,7 +41,7 @@ protected:
virtual void sequencer();
uint8_t get_rom_byte(uint32_t offset) { return m_rom[offset % m_rom.bytes()]; } // need optimise or its good as is ?
- ymz770_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, uint32_t sclock);
+ ymz770_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, uint32_t sclock);
sound_stream *m_stream;
uint32_t m_sclock;
@@ -111,7 +111,7 @@ class ymz774_device : public ymz770_device
{
public:
// construction/destruction
- ymz774_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ ymz774_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
uint8_t read(offs_t offset);