summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/tanbus/radisc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/tanbus/radisc.cpp')
-rw-r--r--src/devices/bus/tanbus/radisc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/tanbus/radisc.cpp b/src/devices/bus/tanbus/radisc.cpp
index b302e33c80d..f612a4c6ca4 100644
--- a/src/devices/bus/tanbus/radisc.cpp
+++ b/src/devices/bus/tanbus/radisc.cpp
@@ -58,7 +58,7 @@ void tanbus_radisc_device::device_add_mconfig(machine_config &config)
/* audio hardware */
SPEAKER(config, "mono").front_center();
- BEEP(config, m_beeper, 1000); // TODO: unknown frequency
+ BEEP(config, m_beeper, XTAL::u(1000)); // TODO: unknown frequency
m_beeper->add_route(ALL_OUTPUTS, "mono", 1.0);
}
@@ -70,7 +70,7 @@ void tanbus_radisc_device::device_add_mconfig(machine_config &config)
// tanbus_radisc_device - constructor
//-------------------------------------------------
-tanbus_radisc_device::tanbus_radisc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
+tanbus_radisc_device::tanbus_radisc_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock)
: device_t(mconfig, TANBUS_RADISC, tag, owner, clock)
, device_tanbus_interface(mconfig, *this)
, m_fdc(*this, "fdc")