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/machine/tms1024.h | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/machine/tms1024.h')
-rw-r--r-- | src/devices/machine/tms1024.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/tms1024.h b/src/devices/machine/tms1024.h index 49193191bfa..ee61cb7563d 100644 --- a/src/devices/machine/tms1024.h +++ b/src/devices/machine/tms1024.h @@ -57,7 +57,7 @@ public: PORT7 }; - tms1024_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock = 0); + tms1024_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL()); // configuration helpers auto read_port4_callback() { return m_read_port[3].bind(); } @@ -77,7 +77,7 @@ public: void write_ms(int state); protected: - tms1024_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock); + tms1024_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; @@ -96,7 +96,7 @@ protected: class tms1025_device : public tms1024_device { public: - tms1025_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock = 0); + tms1025_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL()); auto read_port1_callback() { return m_read_port[0].bind(); } auto read_port2_callback() { return m_read_port[1].bind(); } |