summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/bublbobl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/bublbobl.cpp')
-rw-r--r--src/mame/machine/bublbobl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/bublbobl.cpp b/src/mame/machine/bublbobl.cpp
index 5f2ae51ad1a..f726f7d3fa9 100644
--- a/src/mame/machine/bublbobl.cpp
+++ b/src/mame/machine/bublbobl.cpp
@@ -222,7 +222,7 @@ WRITE8_MEMBER(bublbobl_state::bublbobl_mcu_port1_w)
if ((m_port1_out & 0x40) && (~data & 0x40))
{
// logerror("triggering IRQ on main CPU\n");
- m_maincpu->set_input_line_vector(0, m_mcu_sharedram[0]);
+ m_maincpu->set_input_line_vector(0, m_mcu_sharedram[0]); // Z80
m_maincpu->set_input_line(0, HOLD_LINE);
}
@@ -473,7 +473,7 @@ WRITE8_MEMBER(bub68705_state::port_b_w)
/* hack to get random EXTEND letters (who is supposed to do this? 68705? PAL?) */
m_mcu_sharedram[0x7c] = machine().rand() % 6;
- m_maincpu->set_input_line_vector(0, m_mcu_sharedram[0]);
+ m_maincpu->set_input_line_vector(0, m_mcu_sharedram[0]); // Z80
m_maincpu->set_input_line(0, HOLD_LINE);
}