summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2017-04-20 19:48:56 +0200
committer hap <happppp@users.noreply.github.com>2017-04-20 19:49:19 +0200
commit44de532540e59a1d49dd9f3e95d4dbfc4cafc70b (patch)
tree805158a29180ea64cac8d7018e7f04139501e103 /src
parentce62497501e0b086d2a5fe39a291bf1f74911114 (diff)
ucom4: fix efball old regression (nw)
Diffstat (limited to 'src')
-rw-r--r--src/devices/cpu/ucom4/ucom4.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/ucom4/ucom4.cpp b/src/devices/cpu/ucom4/ucom4.cpp
index bb07aca4b3e..090030e0a1c 100644
--- a/src/devices/cpu/ucom4/ucom4.cpp
+++ b/src/devices/cpu/ucom4/ucom4.cpp
@@ -214,7 +214,7 @@ void ucom4_cpu_device::device_reset()
// clear i/o
for (int i = NEC_UCOM4_PORTC; i <= NEC_UCOM4_PORTI; i++)
- output_w(i, 0xf);
+ output_w(i, 0);
}