2 * DOS interrupt 41h handler -- Windows Kernel Debugger
4 * Check debugsys.inc from the DDK for docu.
9 #include "debugtools.h"
11 DEFAULT_DEBUG_CHANNEL(int);
13 /***********************************************************************
17 void WINAPI
INT_Int41Handler( CONTEXT86
*context
)
21 /* Real-mode debugger services */
22 switch ( AX_reg(context
) )
25 INT_BARF( context
, 0x41 );
31 /* Protected-mode debugger services */
32 switch ( AX_reg(context
) )
45 /* Notifies the debugger of a lot of stuff. We simply ignore it
46 for now, but some of the info might actually be useful ... */
50 INT_BARF( context
, 0x41 );