Release 980601
[wine/multimedia.git] / msdos / int2a.c
blob1924a351068710fb32d5c55525248f0f0cab3775
1 /*
2 * DOS interrupt 2ah handler
3 */
5 #include <stdlib.h>
6 #include "msdos.h"
7 #include "miscemu.h"
8 /* #define DEBUG_INT */
9 #include "debug.h"
11 /**********************************************************************
12 * INT_Int2aHandler
14 * Handler for int 2ah (network).
16 void WINAPI INT_Int2aHandler( CONTEXT *context )
18 switch(AH_reg(context))
20 case 0x00: /* NETWORK INSTALLATION CHECK */
21 break;
23 default:
24 INT_BARF( context, 0x2a );