Release 960712
[wine/dcerpc.git] / miscemu / int2a.c
blobc41b10d135775487958d9f61091bcf1e2aeaa5dd
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include "msdos.h"
4 #include "miscemu.h"
5 #include "stddebug.h"
6 /* #define DEBUG_INT */
7 #include "debug.h"
9 /**********************************************************************
10 * INT_Int2aHandler
12 * Handler for int 2ah (network).
14 void INT_Int2aHandler( SIGCONTEXT *context )
16 switch(AH_reg(context))
18 case 0x00: /* NETWORK INSTALLATION CHECK */
19 break;
21 default:
22 INT_BARF( context, 0x2a );