2 * DOS interrupt 41h handler -- Windows Kernel Debugger
4 * Check debugsys.inc from the DDK for docu.
10 /***********************************************************************
14 void WINAPI
INT_Int41Handler( CONTEXT86
*context
)
18 /* Real-mode debugger services */
19 switch ( AX_reg(context
) )
22 INT_BARF( context
, 0x41 );
28 /* Protected-mode debugger services */
29 switch ( AX_reg(context
) )
42 /* Notifies the debugger of a lot of stuff. We simply ignore it
43 for now, but some of the info might actually be useful ... */
47 INT_BARF( context
, 0x41 );