Release 970202
[wine/multimedia.git] / msdos / int2a.c
blob02e37d89bc8e7692da10915b9a90178b740b5c83
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 INT_Int2aHandler( CONTEXT *context )
20 switch(AH_reg(context))
22 case 0x00: /* NETWORK INSTALLATION CHECK */
23 break;
25 default:
26 INT_BARF( context, 0x2a );