From 25354b5f18f2bb80aa934e60112225581f0da709 Mon Sep 17 00:00:00 2001 From: just nine Date: Sun, 21 Feb 2021 23:12:51 +0000 Subject: [PATCH] mark when an nmi is sent in the output --- emulator.c | 1 + 1 file changed, 1 insertion(+) diff --git a/emulator.c b/emulator.c index b46a64c..b54f716 100644 --- a/emulator.c +++ b/emulator.c @@ -418,6 +418,7 @@ int main(int argc, char *argv[]) { // pause pressed; trigger nmi (int level 7) if (c == 0x01) { + printf("[*] Sending NMI\n"); m68k_set_irq(7); } }