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/bt45x.cpp | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/video/bt45x.cpp')
-rw-r--r-- | src/devices/video/bt45x.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/devices/video/bt45x.cpp b/src/devices/video/bt45x.cpp index 26594307513..1f71e606b38 100644 --- a/src/devices/video/bt45x.cpp +++ b/src/devices/video/bt45x.cpp @@ -85,59 +85,59 @@ void bt455_device::map(address_map &map) map(0x03, 0x03).rw(FUNC(bt455_device::overlay_r), FUNC(bt455_device::overlay_w)); } -bt45x_device_base::bt45x_device_base(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, const u32 palette_colors, const u32 overlay_colors) +bt45x_device_base::bt45x_device_base(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, const u32 palette_colors, const u32 overlay_colors) : device_t(mconfig, type, tag, owner, clock) , m_palette_colors(palette_colors) , m_overlay_colors(overlay_colors) { } -bt45x_rgb_device_base::bt45x_rgb_device_base(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, const u32 palette_colors, const u32 overlay_colors) +bt45x_rgb_device_base::bt45x_rgb_device_base(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, const u32 palette_colors, const u32 overlay_colors) : bt45x_device_base(mconfig, type, tag, owner, clock, palette_colors, overlay_colors) , device_palette_interface(mconfig, *this) { } -bt45x_mono_device_base::bt45x_mono_device_base(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, const u32 palette_colors, const u32 overlay_colors) +bt45x_mono_device_base::bt45x_mono_device_base(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, const u32 palette_colors, const u32 overlay_colors) : bt45x_device_base(mconfig, type, tag, owner, clock, palette_colors, overlay_colors) { } -bt451_device::bt451_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +bt451_device::bt451_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : bt45x_rgb_device_base(mconfig, BT451, tag, owner, clock, 256, 4) { } -bt453_device::bt453_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +bt453_device::bt453_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : bt45x_rgb_device_base(mconfig, BT453, tag, owner, clock, 256, 4) { } -bt454_device::bt454_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +bt454_device::bt454_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : bt45x_rgb_device_base(mconfig, BT454, tag, owner, clock, 16, 1) { } -bt455_device::bt455_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +bt455_device::bt455_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : bt45x_mono_device_base(mconfig, BT455, tag, owner, clock, 16, 1) { } -bt457_device::bt457_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +bt457_device::bt457_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : bt45x_mono_device_base(mconfig, BT457, tag, owner, clock, 256, 4) { } -bt458_device::bt458_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock) +bt458_device::bt458_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock) : bt45x_rgb_device_base(mconfig, type, tag, owner, clock, 256, 4) { } -bt458_device::bt458_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +bt458_device::bt458_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : bt458_device(mconfig, BT458, tag, owner, clock) { } -bt467_device::bt467_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +bt467_device::bt467_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : bt458_device(mconfig, BT467, tag, owner, clock) { } |