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