Reply 1920 of 2419, by hail-to-the-ryzen
There is a nes emulator for dos that causes repeated logs of unhandled INT2F calls, they correspond to the enabling and disabled of critical sections in Win31.
diff -rupN dosbox-orig/src/dos/dos_misc.cpp dosbox/src/dos/dos_misc.cpp
--- dosbox-orig/src/dos/dos_misc.cpp
+++ dosbox/src/dos/dos_misc.cpp
@@ -71,7 +71,7 @@ static Bitu INT2F_Handler(void) {
for(Multiplex_it it = Multiplex.begin();it != Multiplex.end();it++)
if( (*it)() ) return CBRET_NONE;
- LOG(LOG_DOSMISC,LOG_ERROR)("DOS:INT 2F Unhandled call AX=%4X",reg_ax);
+ LOG(LOG_DOSMISC,LOG_DEBUG)("DOS:INT 2F Unhandled call AX=%4X",reg_ax);
return CBRET_NONE;
}