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/c140.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/sound/c140.h')
-rw-r--r-- | src/devices/sound/c140.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/c140.h b/src/devices/sound/c140.h index 918f5dae31a..7f8a0a00040 100644 --- a/src/devices/sound/c140.h +++ b/src/devices/sound/c140.h @@ -22,7 +22,7 @@ class c140_device : public device_t, public device_rom_interface<25, 1, 0, ENDIANNESS_BIG> { public: - c140_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + c140_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); // configuration auto int1_callback() { return m_int1_callback.bind(); } @@ -35,7 +35,7 @@ public: void c140_le_w(offs_t offset, u8 data) { c140_w(offset ^ 1, data);} protected: - c140_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + c140_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; @@ -104,7 +104,7 @@ protected: class c219_device : public c140_device { public: - c219_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + c219_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); u8 c219_r(offs_t offset); void c219_w(offs_t offset, u8 data); |