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/8x300/8x300.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/cpu/8x300/8x300.h')
-rw-r--r-- | src/devices/cpu/8x300/8x300.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/8x300/8x300.h b/src/devices/cpu/8x300/8x300.h index e4f2a2a3dda..f3e17d0df0c 100644 --- a/src/devices/cpu/8x300/8x300.h +++ b/src/devices/cpu/8x300/8x300.h @@ -43,7 +43,7 @@ class n8x300_cpu_device : public cpu_device { public: // construction/destruction - n8x300_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + n8x300_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); auto sc_callback() { return m_sc_callback.bind(); } auto wc_callback() { return m_wc_callback.bind(); } @@ -52,7 +52,7 @@ public: auto rb_callback() { return m_rb_callback.bind(); } auto iv_callback() { return m_iv_callback.bind(); } protected: - n8x300_cpu_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + n8x300_cpu_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock); // device-level overrides virtual void device_resolve_objects() override; @@ -152,7 +152,7 @@ class n8x305_cpu_device : public n8x300_cpu_device { public: // construction/destruction - n8x305_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + n8x305_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: virtual void set_reg(uint8_t reg, uint8_t val, bool xmit) override; |