summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/adc0844.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-12-26 21:07:02 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-12-26 23:12:52 -0500
commit280f9b94137ae1d3559fa10be0cc9dcf85c9cc24 (patch)
treeab2a6bc63f6875c7f788bbf3ecf9545f5b705dff /src/devices/machine/adc0844.h
parent86f6dd0c6c39e87dd61515d052451f637b929dad (diff)
Default input clocks for ADC083x and ADC084x (nw)
Diffstat (limited to 'src/devices/machine/adc0844.h')
-rw-r--r--src/devices/machine/adc0844.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/adc0844.h b/src/devices/machine/adc0844.h
index cdb98d13701..d20d9697a09 100644
--- a/src/devices/machine/adc0844.h
+++ b/src/devices/machine/adc0844.h
@@ -34,7 +34,7 @@ class adc0844_device : public device_t
{
public:
// construction/destruction
- adc0844_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ adc0844_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
// configuration
auto intr_callback() { return m_intr_cb.bind(); }
@@ -70,7 +70,7 @@ class adc0848_device : public adc0844_device
{
public:
// construction/destruction
- adc0848_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ adc0848_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
// configuration
auto ch5_callback() { return m_ch5_cb.bind(); }