summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/vectrex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/vectrex.cpp')
-rw-r--r--src/mame/video/vectrex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/vectrex.cpp b/src/mame/video/vectrex.cpp
index 67502327e24..c73bce34c9e 100644
--- a/src/mame/video/vectrex.cpp
+++ b/src/mame/video/vectrex.cpp
@@ -345,9 +345,9 @@ WRITE8_MEMBER(vectrex_base_state::v_via_pb_w)
if (data & 0x10)
{
if (data & 0x08) /* BC1 (do we select a reg or write it ?) */
- m_ay8912->address_w(m_via_out[PORTA]);
+ m_ay8912->address_w(space, 0, m_via_out[PORTA]);
else
- m_ay8912->data_w(m_via_out[PORTA]);
+ m_ay8912->data_w(space, 0, m_via_out[PORTA]);
}
if (!(data & 0x1) && (m_via_out[PORTB] & 0x1))