summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2019-11-10 22:58:27 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2019-11-10 22:58:27 +0100
commit072b6b4e6387d839082ef8453195d363a22aae79 (patch)
tree9206a5b2778c8436c2059999c0ee1c4cfd251930
parent5dbe6a8d24665d39159513a1b9b5eb1f8f8b1a9f (diff)
devices\bus\a2bus\a2mockingboard.cpp: probable fix for MT07480. No idea which games use this so if someone else can test.. Regression seems pretty clear by looking at the 0.199 diff, anyway (nw)
-rw-r--r--src/devices/bus/a2bus/a2mockingboard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/a2bus/a2mockingboard.cpp b/src/devices/bus/a2bus/a2mockingboard.cpp
index c4c45b6975b..98b106e1f79 100644
--- a/src/devices/bus/a2bus/a2mockingboard.cpp
+++ b/src/devices/bus/a2bus/a2mockingboard.cpp
@@ -338,7 +338,7 @@ WRITE8_MEMBER( a2bus_ayboard_device::via2_out_b )
break;
case 3: // BDIR=1, BC1=1 (latch)
- m_ay2->data_w(m_porta2);
+ m_ay2->address_w(m_porta2);
break;
}
}