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/saa5240.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/video/saa5240.h')
-rw-r--r-- | src/devices/video/saa5240.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/video/saa5240.h b/src/devices/video/saa5240.h index b4f2a78decd..36a0e394e02 100644 --- a/src/devices/video/saa5240.h +++ b/src/devices/video/saa5240.h @@ -58,7 +58,7 @@ class saa5240_device : { public: // construction/destruction - saa5240_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + saa5240_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); DECLARE_WRITE_LINE_MEMBER(write_scl); DECLARE_WRITE_LINE_MEMBER(write_sda); @@ -71,7 +71,7 @@ public: uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); protected: - saa5240_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + saa5240_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; @@ -183,7 +183,7 @@ class saa5240a_device : public saa5240_device { public: // construction/destruction - saa5240a_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + saa5240a_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); // optional information overrides virtual const tiny_rom_entry *device_rom_region() const override; @@ -196,7 +196,7 @@ class saa5240b_device : public saa5240_device { public: // construction/destruction - saa5240b_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + saa5240b_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); // optional information overrides virtual const tiny_rom_entry *device_rom_region() const override; @@ -209,7 +209,7 @@ class saa5243e_device : public saa5240_device { public: // construction/destruction - saa5243e_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + saa5243e_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); // optional information overrides virtual const tiny_rom_entry *device_rom_region() const override; |