diff options
| author | 2015-11-25 02:11:54 +0100 | |
|---|---|---|
| committer | 2015-11-25 02:11:54 +0100 | |
| commit | 8da547cd60951cf315c0538ffd6293b4e3429566 (patch) | |
| tree | cec8eadd7b8052f6cf7d028c6c8ce226b897e9ed | |
| parent | 8aed181b9df15d362706598ff1dc01b1f845f52f (diff) | |
More notes, still nw
| -rw-r--r-- | src/mame/drivers/wecleman.cpp | 2 |
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); } |
