summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/upd7001.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/upd7001.h')
-rw-r--r--src/devices/machine/upd7001.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/upd7001.h b/src/devices/machine/upd7001.h
index afc4b632293..db483851c42 100644
--- a/src/devices/machine/upd7001.h
+++ b/src/devices/machine/upd7001.h
@@ -33,9 +33,9 @@ class upd7001_device : public device_t
{
public:
// device type constructors
- upd7001_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ upd7001_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL());
upd7001_device(const machine_config &mconfig, const char *tag, device_t *owner, double r, double c)
- : upd7001_device(mconfig, tag, owner, 0U)
+ : upd7001_device(mconfig, tag, owner)
{
set_rc(r, c);
}