From 918d8f3e203c7b6d97b51c1d389f13c9cbe8d25c Mon Sep 17 00:00:00 2001 From: Sylvain Petreolle Date: Fri, 13 Jun 2003 23:17:34 +0000 Subject: [PATCH] Trace which real mode interrupt is emulated. --- dlls/winedos/int31.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/winedos/int31.c b/dlls/winedos/int31.c index 9e7739b0bc0..881cdeec47e 100644 --- a/dlls/winedos/int31.c +++ b/dlls/winedos/int31.c @@ -1062,7 +1062,8 @@ void WINAPI DOSVM_Int31Handler( CONTEXT86 *context ) break; case 0x0300: /* Simulate real mode interrupt */ - TRACE( "Simulate real mode interrupt.\n" ); + + TRACE( "Simulate real mode interrupt %d.\n", BL_reg(context)); DOSVM_CallRMInt( context ); break;