Added ability to turn on/off debug channels.
[wine.git] / msdos / int2a.c
bloba170a567af2d15dfade231b87b99a3163fd31c22
1 /*
2 * DOS interrupt 2ah handler
3 */
5 #include <stdlib.h>
6 #include "msdos.h"
7 #include "miscemu.h"
8 #include "wine/debug.h"
10 WINE_DEFAULT_DEBUG_CHANNEL(int);
12 /**********************************************************************
13 * INT_Int2aHandler (WPROCS.142)
15 * Handler for int 2ah (network).
17 void WINAPI INT_Int2aHandler( CONTEXT86 *context )
19 switch(AH_reg(context))
21 case 0x00: /* NETWORK INSTALLATION CHECK */
22 break;
24 default:
25 INT_BARF( context, 0x2a );