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/es5510 | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/devices/cpu/es5510')
-rw-r--r-- | src/devices/cpu/es5510/es5510.cpp | 2 | ||||
-rw-r--r-- | src/devices/cpu/es5510/es5510.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/es5510/es5510.cpp b/src/devices/cpu/es5510/es5510.cpp index 6614c03ab52..2520fcf729d 100644 --- a/src/devices/cpu/es5510/es5510.cpp +++ b/src/devices/cpu/es5510/es5510.cpp @@ -134,7 +134,7 @@ inline static int32_t asl(int32_t value, int shift, uint8_t &flags) { } // Initialize ESP to mostly zeroed, configured for 64k samples of delay line memory, running (not halted) -es5510_device::es5510_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) +es5510_device::es5510_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) : cpu_device(mconfig, ES5510, tag, owner, clock) , icount(0) , halt_asserted(false) diff --git a/src/devices/cpu/es5510/es5510.h b/src/devices/cpu/es5510/es5510.h index 9f8d10035ca..7f046416205 100644 --- a/src/devices/cpu/es5510/es5510.h +++ b/src/devices/cpu/es5510/es5510.h @@ -19,7 +19,7 @@ public: static constexpr uint32_t DRAM_MASK = (DRAM_SIZE-1); static constexpr feature_type imperfect_features() { return feature::SOUND; } - es5510_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); + es5510_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock); uint8_t host_r(address_space &space, offs_t offset); void host_w(offs_t offset, uint8_t data); |