summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/es5510
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/es5510')
-rw-r--r--src/devices/cpu/es5510/es5510.cpp2
-rw-r--r--src/devices/cpu/es5510/es5510.h2
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);