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/sound/es5506.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/sound/es5506.h')
-rw-r--r-- | src/devices/sound/es5506.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/es5506.h b/src/devices/sound/es5506.h index 73f5c0a3c8f..3305afc5abe 100644 --- a/src/devices/sound/es5506.h +++ b/src/devices/sound/es5506.h @@ -75,7 +75,7 @@ protected: u8 filtcount = 0; // filter count }; - es550x_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock); + es550x_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; @@ -159,7 +159,7 @@ protected: class es5506_device : public es550x_device { public: - es5506_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock); + es5506_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); ~es5506_device() {} u8 read(offs_t offset); @@ -217,7 +217,7 @@ DECLARE_DEVICE_TYPE(ES5506, es5506_device) class es5505_device : public es550x_device { public: - es5505_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock); + es5505_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); u16 read(offs_t offset); void write(offs_t offset, u16 data, u16 mem_mask = ~0); |