From b56bb29d9ba8d0d4dfaf6371e81f7cf73f076a3b Mon Sep 17 00:00:00 2001 From: Oxore Date: Sat, 6 May 2023 23:49:12 +0300 Subject: Fix interrupt acknowledging --- vdp.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'vdp.cpp') diff --git a/vdp.cpp b/vdp.cpp index 765855c..7b27a79 100644 --- a/vdp.cpp +++ b/vdp.cpp @@ -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; } -- cgit v1.2.3