summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/nvram.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/nvram.h')
-rw-r--r--src/devices/machine/nvram.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/nvram.h b/src/devices/machine/nvram.h
index 58bde56bece..d6ba521c699 100644
--- a/src/devices/machine/nvram.h
+++ b/src/devices/machine/nvram.h
@@ -32,11 +32,11 @@ public:
// construction/destruction
nvram_device(const machine_config &mconfig, const char *tag, device_t *owner, default_value value)
- : nvram_device(mconfig, tag, owner, 0)
+ : nvram_device(mconfig, tag, owner)
{
set_default_value(value);
}
- nvram_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
+ nvram_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL());
// inline configuration helpers
void set_default_value(default_value value) { m_default_value = value; }