Release 950727
[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 sigcontext )
17 {
18 #define context (&sigcontext)
19     switch(AH)
20     {
21     case 0x00:                             /* NETWORK INSTALLATION CHECK */
22         break;
23                 
24     default:
25         INT_BARF( 0x2a );
26     }
27 #undef context
28 }