Release 990328.
[wine/multimedia.git] / msdos / int2a.c
blob8f3d6ad948501dcdf72374b1d336ad8eb31556e8
1 /*
2 * DOS interrupt 2ah handler
3 */
5 #include <stdlib.h>
6 #include "msdos.h"
7 #include "miscemu.h"
8 #include "debug.h"
10 /**********************************************************************
11 * INT_Int2aHandler
13 * Handler for int 2ah (network).
15 void WINAPI INT_Int2aHandler( CONTEXT *context )
17 switch(AH_reg(context))
19 case 0x00: /* NETWORK INSTALLATION CHECK */
20 break;
22 default:
23 INT_BARF( context, 0x2a );