From 978fabb6b377f80b238ad26ab3d3e7f0f73e803a Mon Sep 17 00:00:00 2001 From: AJR Date: Sun, 19 Nov 2017 11:20:17 -0500 Subject: x2212: MAME should not keep getting line polarity wrong like this (nw) --- src/devices/machine/x2212.cpp | 8 ++++---- 1 file 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 ) -- cgit v1.2.3