summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author angelosa <salese_corp_ltd@email.it>2015-11-25 02:11:54 +0100
committer angelosa <salese_corp_ltd@email.it>2015-11-25 02:11:54 +0100
commit8da547cd60951cf315c0538ffd6293b4e3429566 (patch)
treecec8eadd7b8052f6cf7d028c6c8ce226b897e9ed /src
parent8aed181b9df15d362706598ff1dc01b1f845f52f (diff)
More notes, still nw
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/wecleman.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/wecleman.cpp b/src/mame/drivers/wecleman.cpp
index 3747c3a59bf..5f629f2b474 100644
--- a/src/mame/drivers/wecleman.cpp
+++ b/src/mame/drivers/wecleman.cpp
@@ -1044,7 +1044,7 @@ TIMER_DEVICE_CALLBACK_MEMBER(wecleman_state::wecleman_scanline)
if(scanline == 232) // vblank irq
m_maincpu->set_input_line(4, HOLD_LINE);
- else if(((scanline % 64) == 0)) // timer irq TODO: wrong place maybe? Could do with 007645 blitter or "V-CNT" signal.
+ else if(((scanline % 64) == 0)) // timer irq TODO: wrong place maybe? Could do with blitter chip irq (007643/007645?) or "V-CNT" signal.
m_maincpu->set_input_line(5, HOLD_LINE);
}