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/tms32031/tms32031.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/cpu/tms32031/tms32031.h')
-rw-r--r-- | src/devices/cpu/tms32031/tms32031.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/cpu/tms32031/tms32031.h b/src/devices/cpu/tms32031/tms32031.h index 975a8d1cb32..f4193e2cf93 100644 --- a/src/devices/cpu/tms32031/tms32031.h +++ b/src/devices/cpu/tms32031/tms32031.h @@ -143,7 +143,7 @@ protected: }; // construction/destruction - tms3203x_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, uint32_t chiptype, int clock_per_inst, address_map_constructor internal_map); + tms3203x_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock, uint32_t chiptype, int clock_per_inst, address_map_constructor internal_map); void common_3203x(address_map &map); // device-level overrides @@ -803,7 +803,7 @@ class tms32030_device : public tms3203x_device { public: // construction/destruction - tms32030_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + tms32030_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); void internal_32030(address_map &map); }; @@ -814,7 +814,7 @@ class tms32031_device : public tms3203x_device { public: // construction/destruction - tms32031_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + tms32031_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); void internal_32031(address_map &map); }; @@ -825,7 +825,7 @@ class tms32032_device : public tms3203x_device { public: // construction/destruction - tms32032_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + tms32032_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); void internal_32032(address_map &map); }; @@ -836,7 +836,7 @@ class tms32033_device : public tms3203x_device { public: // construction/destruction - tms32033_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + tms32033_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); void internal_32033(address_map &map); }; |