diff options
author | Oxore <oxore@protonmail.com> | 2023-05-06 23:49:12 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-05-06 23:49:12 +0300 |
commit | b56bb29d9ba8d0d4dfaf6371e81f7cf73f076a3b (patch) | |
tree | 3e7b658c20fc33ee3d7f6aebb309371677993be6 /vdp.cpp | |
parent | b834fe204108c549e576ffa7dfd2684225bbb7f7 (diff) |
Fix interrupt acknowledging
Diffstat (limited to 'vdp.cpp')
-rw-r--r-- | vdp.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -259,8 +259,7 @@ bool VDP::Scanline() if (_lines_counter >= lines_per_screen) { _lines_counter = 0; if (MODESET2_IE0_GET(mode_set_2)) { - // TODO somehow this acknowledgment messes up the `hello word` example - //m68k_set_irq(6); + m68k_set_irq(M68K_IRQ_6); _status.vblank = true; return true; } |