summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-11-19 11:20:17 -0500
committer AJR <ajrhacker@users.noreply.github.com>2017-11-19 11:20:17 -0500
commit978fabb6b377f80b238ad26ab3d3e7f0f73e803a (patch)
tree4536b4e0ea9a1f3dcf96f275a31968d446d581d0
parentc71c1f6e4d9948cafbc4be74dcc40b00ae69c646 (diff)
x2212: MAME should not keep getting line polarity wrong like this (nw)
-rw-r--r--src/devices/machine/x2212.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/x2212.cpp b/src/devices/machine/x2212.cpp
index 04a9ee5a1c9..cae221b6f94 100644
--- a/src/devices/machine/x2212.cpp
+++ b/src/devices/machine/x2212.cpp
@@ -31,8 +31,8 @@ ADDRESS_MAP_END
//**************************************************************************
// device type definition
-DEFINE_DEVICE_TYPE(X2212, x2212_device, "x2212", "Xicor X2212 256x4 NVRAM")
-DEFINE_DEVICE_TYPE(X2210, x2210_device, "x2210", "Xicor X2210 64x4 NVRAM")
+DEFINE_DEVICE_TYPE(X2212, x2212_device, "x2212", "Xicor X2212 256x4 NOVRAM")
+DEFINE_DEVICE_TYPE(X2210, x2210_device, "x2210", "Xicor X2210 64x4 NOVRAM")
//-------------------------------------------------
// x2212_device - constructor
@@ -209,7 +209,7 @@ READ8_MEMBER( x2212_device::read )
//-------------------------------------------------
// store - set the state of the store line
-// (active high)
+// (FIXME: actually active low, not active high)
//-------------------------------------------------
WRITE_LINE_MEMBER( x2212_device::store )
@@ -222,7 +222,7 @@ WRITE_LINE_MEMBER( x2212_device::store )
//-------------------------------------------------
// recall - set the state of the recall line
-// (active high)
+// (FIXME: actually active low, not active high)
//-------------------------------------------------
WRITE_LINE_MEMBER( x2212_device::recall )