From f5cf51aa7f6e5353e979cd7cc59ed87ece9a8a9e Mon Sep 17 00:00:00 2001 From: just nine Date: Thu, 25 Feb 2021 20:39:07 +0000 Subject: [PATCH] change output for nmi slightly --- emulator.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emulator.c b/emulator.c index e8603be..848351e 100644 --- a/emulator.c +++ b/emulator.c @@ -374,7 +374,8 @@ int main(int argc, char *argv[]) { // pause pressed; trigger nmi (int level 7) if (c == 0x01 && c_type) { - printf("[*] Sending NMI\n"); + printf("[INT] Sending NMI\n"); + last_irq = 7; M68K_SET_IRQ(7); }