diff options
Diffstat (limited to 'src/devices/cpu/t11')
-rw-r--r-- | src/devices/cpu/t11/t11.cpp | 6 | ||||
-rw-r--r-- | src/devices/cpu/t11/t11.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/cpu/t11/t11.cpp b/src/devices/cpu/t11/t11.cpp index 422ea6e0510..5db68492043 100644 --- a/src/devices/cpu/t11/t11.cpp +++ b/src/devices/cpu/t11/t11.cpp @@ -39,12 +39,12 @@ DEFINE_DEVICE_TYPE(T11, t11_device, "t11", "DEC T11") DEFINE_DEVICE_TYPE(K1801VM2, k1801vm2_device, "k1801vm2", "K1801VM2") -k1801vm2_device::k1801vm2_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +k1801vm2_device::k1801vm2_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : t11_device(mconfig, K1801VM2, tag, owner, clock) { } -t11_device::t11_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock) +t11_device::t11_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock) : cpu_device(mconfig, type, tag, owner, clock) , m_program_config("program", ENDIANNESS_LITTLE, 16, 16, 0) , c_initial_mode(0) @@ -63,7 +63,7 @@ t11_device::t11_device(const machine_config &mconfig, device_type type, const ch m_ppc.d = 0; } -t11_device::t11_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +t11_device::t11_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : t11_device(mconfig, T11, tag, owner, clock) { } diff --git a/src/devices/cpu/t11/t11.h b/src/devices/cpu/t11/t11.h index cf83f65638e..d1dd1922693 100644 --- a/src/devices/cpu/t11/t11.h +++ b/src/devices/cpu/t11/t11.h @@ -39,7 +39,7 @@ public: static constexpr uint8_t BUS_ERROR = 8; // construction/destruction - t11_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + t11_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); // configuration helpers void set_initial_mode(const uint16_t mode) { c_initial_mode = mode; } @@ -59,7 +59,7 @@ protected: T11_TRAP = 034 // TRAP instruction vector }; - t11_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock); + t11_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; @@ -1166,7 +1166,7 @@ class k1801vm2_device : public t11_device { public: // construction/destruction - k1801vm2_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + k1801vm2_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); protected: // device-level overrides |