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/i8275.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/video/i8275.h')
-rw-r--r-- | src/devices/video/i8275.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/i8275.h b/src/devices/video/i8275.h index 2b49dee6362..ec0e1add6de 100644 --- a/src/devices/video/i8275.h +++ b/src/devices/video/i8275.h @@ -58,7 +58,7 @@ public: typedef device_delegate<void (bitmap_rgb32 &bitmap, int x, int y, uint8_t linecount, uint8_t charcode, uint8_t lineattr, uint8_t lten, uint8_t rvv, uint8_t vsp, uint8_t gpa, uint8_t hlgt)> draw_character_delegate; // construction/destruction - i8275_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + i8275_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); void set_character_width(int value) { m_hpixels_per_column = value; } void set_refresh_hack(bool hack) { m_refresh_hack = hack; } @@ -80,7 +80,7 @@ public: uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); protected: - i8275_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + i8275_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; @@ -212,7 +212,7 @@ class i8276_device : public i8275_device { public: // construction/destruction - i8276_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + i8276_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; |