summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-07-31 20:05:15 -0400
committer AJR <ajrhacker@users.noreply.github.com>2017-07-31 20:05:18 -0400
commitd050ba956ed79015389bc2cba7399db9cbd62684 (patch)
treedd36d4022c2da7a9c327c4a353fa9309e79a3a9f
parent3b4315a4b53e7bdecf9acf8afb31298037bf517f (diff)
ds2404: Provide full chip name and standard oscillator frequency (nw)
-rw-r--r--src/devices/machine/ds2404.cpp2
-rw-r--r--src/devices/machine/ds2404.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/ds2404.cpp b/src/devices/machine/ds2404.cpp
index 081107d1651..b5f41d36f25 100644
--- a/src/devices/machine/ds2404.cpp
+++ b/src/devices/machine/ds2404.cpp
@@ -18,7 +18,7 @@
//**************************************************************************
// device type definition
-DEFINE_DEVICE_TYPE(DS2404, ds2404_device, "ds2404", "DS2404")
+DEFINE_DEVICE_TYPE(DS2404, ds2404_device, "ds2404", "DS2404 EconoRAM Time Chip")
//-------------------------------------------------
// ds2404_device - constructor
diff --git a/src/devices/machine/ds2404.h b/src/devices/machine/ds2404.h
index 97d2914e9c4..5ebc665d171 100644
--- a/src/devices/machine/ds2404.h
+++ b/src/devices/machine/ds2404.h
@@ -21,7 +21,7 @@
***************************************************************************/
#define MCFG_DS2404_ADD(_tag, _ref_year, _ref_month, _ref_day) \
- MCFG_DEVICE_ADD(_tag, DS2404, 0) \
+ MCFG_DEVICE_ADD(_tag, DS2404, XTAL_32_768kHz) \
MCFG_DS2404_REF_YEAR(_ref_year) \
MCFG_DS2404_REF_MONTH(_ref_month) \
MCFG_DS2404_REF_DAY(_ref_day)