Release 960623
[wine] / miscemu / int2a.c
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"
10
11 /**********************************************************************
12  *          INT_Int2aHandler
13  *
14  * Handler for int 2ah (network).
15  */
16 void INT_Int2aHandler( struct sigcontext_struct context )
17 {
18     switch(AH_reg(&context))
19     {
20     case 0x00:                             /* NETWORK INSTALLATION CHECK */
21         break;
22                 
23     default:
24         INT_BARF( &context, 0x2a );
25     }
26 }