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/msm6222b.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/video/msm6222b.h')
-rw-r--r-- | src/devices/video/msm6222b.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/msm6222b.h b/src/devices/video/msm6222b.h index 7a2cb00fd89..da5c6321b80 100644 --- a/src/devices/video/msm6222b.h +++ b/src/devices/video/msm6222b.h @@ -18,7 +18,7 @@ class msm6222b_device : public device_t { public: - msm6222b_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + msm6222b_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); void control_w(uint8_t data); uint8_t control_r(); @@ -29,7 +29,7 @@ public: const uint8_t *render(); protected: - msm6222b_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + msm6222b_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); virtual void device_start() override; @@ -49,7 +49,7 @@ private: class msm6222b_01_device : public msm6222b_device { public: - msm6222b_01_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + msm6222b_01_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: virtual const tiny_rom_entry *device_rom_region() const override; |