From c743d360282736f038510997b909708245dfe7e6 Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Thu, 4 Aug 2022 18:04:40 +0600 Subject: [PATCH] 386: Set BS flag in DR6 other interpreter as well --- src/cpu/386_dynarec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cpu/386_dynarec.c b/src/cpu/386_dynarec.c index 3e4d91ed2..f90ce5f80 100644 --- a/src/cpu/386_dynarec.c +++ b/src/cpu/386_dynarec.c @@ -404,6 +404,7 @@ exec386_dynarec_int(void) oldcs = CS; #endif cpu_state.oldpc = cpu_state.pc; + dr[6] |= 0x4000; x86_int(1); }