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/cpu/pic16c62x/pic16c62x.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/cpu/pic16c62x/pic16c62x.h')
-rw-r--r-- | src/devices/cpu/pic16c62x/pic16c62x.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/cpu/pic16c62x/pic16c62x.h b/src/devices/cpu/pic16c62x/pic16c62x.h index d0b9390078f..427bcc0dad4 100644 --- a/src/devices/cpu/pic16c62x/pic16c62x.h +++ b/src/devices/cpu/pic16c62x/pic16c62x.h @@ -58,7 +58,7 @@ public: protected: // construction/destruction - pic16c62x_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, int program_width, int picmodel); + pic16c62x_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, int program_width, int picmodel); // device-level overrides virtual void device_start() override; @@ -208,14 +208,14 @@ class pic16c620_device : public pic16c62x_device { public: // construction/destruction - pic16c620_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + pic16c620_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; class pic16c620a_device : public pic16c62x_device { public: // construction/destruction - pic16c620a_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + pic16c620a_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; /* @@ -223,35 +223,35 @@ class pic16cr620a_device : public pic16c62x_device { public: // construction/destruction - pic16cr620a_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + pic16cr620a_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }*/ class pic16c621_device : public pic16c62x_device { public: // construction/destruction - pic16c621_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + pic16c621_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; class pic16c621a_device : public pic16c62x_device { public: // construction/destruction - pic16c621a_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + pic16c621a_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; class pic16c622_device : public pic16c62x_device { public: // construction/destruction - pic16c622_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + pic16c622_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; class pic16c622a_device : public pic16c62x_device { public: // construction/destruction - pic16c622a_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + pic16c622a_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); }; |