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/sed1500.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/video/sed1500.h')
-rw-r--r-- | src/devices/video/sed1500.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/video/sed1500.h b/src/devices/video/sed1500.h index a72e124f772..6cc56c2a699 100644 --- a/src/devices/video/sed1500.h +++ b/src/devices/video/sed1500.h @@ -31,7 +31,7 @@ SEG: LCD segments class sed1500_device : public device_t { public: - sed1500_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock); + sed1500_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); // configuration helpers auto write_segs() { return m_write_segs.bind(); } // common number in offset, segment data in data @@ -40,7 +40,7 @@ public: u8 read(offs_t offset); protected: - sed1500_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, u8 cmax, u8 smax); + sed1500_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, u8 cmax, u8 smax); // device-level overrides virtual void device_start() override; @@ -62,19 +62,19 @@ protected: class sed1501_device : public sed1500_device { public: - sed1501_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock); + sed1501_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; class sed1502_device : public sed1500_device { public: - sed1502_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock); + sed1502_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; class sed1503_device : public sed1500_device { public: - sed1503_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock); + sed1503_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; |