summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mustache.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mustache.cpp')
-rw-r--r--src/mame/drivers/mustache.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/mustache.cpp b/src/mame/drivers/mustache.cpp
index 9462c33bf02..f3fdf7c9232 100644
--- a/src/mame/drivers/mustache.cpp
+++ b/src/mame/drivers/mustache.cpp
@@ -171,10 +171,10 @@ TIMER_DEVICE_CALLBACK_MEMBER(mustache_state::scanline)
int scanline = param;
if(scanline == 240) // vblank-out irq
- m_maincpu->set_input_line_and_vector(0, HOLD_LINE,0x10); /* RST 10h */
+ m_maincpu->set_input_line_and_vector(0, HOLD_LINE,0x10); /* Z80 - RST 10h */
if(scanline == 0) // vblank-in irq
- m_maincpu->set_input_line_and_vector(0, HOLD_LINE,0x08); /* RST 08h */
+ m_maincpu->set_input_line_and_vector(0, HOLD_LINE,0x08); /* Z80 - RST 08h */
}