Release 970101
[wine] / msdos / int2a.c
1 /*
2  * DOS interrupt 2ah handler
3  */
4
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"
12
13 /**********************************************************************
14  *          INT_Int2aHandler
15  *
16  * Handler for int 2ah (network).
17  */
18 void INT_Int2aHandler( CONTEXT *context )
19 {
20     switch(AH_reg(context))
21     {
22     case 0x00:                             /* NETWORK INSTALLATION CHECK */
23         break;
24                 
25     default:
26         INT_BARF( context, 0x2a );
27     }
28 }