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/video/bt47x.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/video/bt47x.h')
-rw-r--r-- | src/devices/video/bt47x.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/video/bt47x.h b/src/devices/video/bt47x.h index a51fe2c3df8..97163cca35b 100644 --- a/src/devices/video/bt47x.h +++ b/src/devices/video/bt47x.h @@ -17,7 +17,7 @@ public: virtual void map(address_map &map); protected: - bt47x_device_base(machine_config const &mconfig, device_type type, char const *tag, device_t *owner, u32 clock, unsigned const palette_colors, unsigned const overlay_colors, unsigned const color_bits); + bt47x_device_base(machine_config const &mconfig, device_type type, char const *tag, device_t *owner, const XTAL &clock, unsigned const palette_colors, unsigned const overlay_colors, unsigned const color_bits); // device_t overrides virtual void device_start() override; @@ -60,7 +60,7 @@ public: virtual void map(address_map &map) override; protected: - bt475_device_base(machine_config const &mconfig, device_type type, char const *tag, device_t *owner, u32 clock, unsigned const palette_colors, unsigned const overlay_colors, unsigned const color_bits); + bt475_device_base(machine_config const &mconfig, device_type type, char const *tag, device_t *owner, const XTAL &clock, unsigned const palette_colors, unsigned const overlay_colors, unsigned const color_bits); // device_t overrides virtual void device_start() override; @@ -85,25 +85,25 @@ protected: class bt471_device : public bt47x_device_base { public: - bt471_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock); + bt471_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock); }; class bt475_device : public bt475_device_base { public: - bt475_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock); + bt475_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock); }; class bt476_device : public bt47x_device_base { public: - bt476_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock); + bt476_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock); }; class bt477_device : public bt475_device_base { public: - bt477_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock); + bt477_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock); protected: virtual unsigned color_bits() const override { return (m_command & D1) ? 8 : 6; } @@ -112,7 +112,7 @@ protected: class bt478_device : public bt47x_device_base { public: - bt478_device(machine_config const &mconfig, char const *tag, device_t *owner, u32 clock); + bt478_device(machine_config const &mconfig, char const *tag, device_t *owner, const XTAL &clock); }; DECLARE_DEVICE_TYPE(BT471, bt471_device) |