From 2a6a0615569cc0eebfbdbb2a1624808125e49fe7 Mon Sep 17 00:00:00 2001 From: OBattler Date: Tue, 9 Aug 2022 04:34:48 +0200 Subject: [PATCH] nmi_raise() actually raises NMI, should fix ES1371 legacy device and other stuff. --- src/cpu/386_common.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cpu/386_common.c b/src/cpu/386_common.c index 92360a248..3c0cd168a 100644 --- a/src/cpu/386_common.c +++ b/src/cpu/386_common.c @@ -1897,6 +1897,8 @@ nmi_raise(void) { if (is486 && (cpu_fast_off_flags & 0x20000000)) cpu_fast_off_advance(); + + nmi = 1; }