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/acorn_vidc.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/machine/acorn_vidc.h')
-rw-r--r-- | src/devices/machine/acorn_vidc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/acorn_vidc.h b/src/devices/machine/acorn_vidc.h index f2009b255b2..2affc7173cf 100644 --- a/src/devices/machine/acorn_vidc.h +++ b/src/devices/machine/acorn_vidc.h @@ -49,7 +49,7 @@ public: virtual bool get_dac_mode() { return false; } protected: - acorn_vidc10_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, int dac_type); + acorn_vidc10_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, int dac_type); // device-level overrides //virtual void device_validity_check(validity_checker &valid) const override; @@ -134,14 +134,14 @@ class acorn_vidc1_device : public acorn_vidc10_device { public: // construction/destruction - acorn_vidc1_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock); + acorn_vidc1_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; class acorn_vidc1a_device : public acorn_vidc10_device { public: // construction/destruction - acorn_vidc1a_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock); + acorn_vidc1a_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; // device type definition @@ -152,7 +152,7 @@ class arm_vidc20_device : public acorn_vidc10_device { public: // construction/destruction - arm_vidc20_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock); + arm_vidc20_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); void write_dac32(u8 channel, u16 data); virtual bool get_dac_mode() override; |