2 * DOS interrupt 41h handler -- Windows Kernel Debugger
4 * Check debugsys.inc from the DDK for docu.
6 * Copyright 1998 Ulrich Weigand
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include "wine/debug.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(int);
29 /***********************************************************************
30 * DOSVM_Int41Handler (WINEDOS16.165)
33 void WINAPI
DOSVM_Int41Handler( CONTEXT86
*context
)
37 /* Real-mode debugger services */
38 switch ( AX_reg(context
) )
41 INT_BARF( context
, 0x41 );
47 /* Protected-mode debugger services */
48 switch ( AX_reg(context
) )
61 /* Notifies the debugger of a lot of stuff. We simply ignore it
62 for now, but some of the info might actually be useful ... */
66 INT_BARF( context
, 0x41 );