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