The SVGA block code was not accessible (AH and AL inverted). Fixed.
[wine] / msdos / int2a.c
1 /*
2  * DOS interrupt 2ah handler
3  */
4
5 #include <stdlib.h>
6 #include "msdos.h"
7 #include "miscemu.h"
8 #include "wine/debug.h"
9
10 WINE_DEFAULT_DEBUG_CHANNEL(int);
11
12 /**********************************************************************
13  *          INT_Int2aHandler (WPROCS.142)
14  *
15  * Handler for int 2ah (network).
16  */
17 void WINAPI INT_Int2aHandler( CONTEXT86 *context )
18 {
19     switch(AH_reg(context))
20     {
21     case 0x00:                             /* NETWORK INSTALLATION CHECK */
22         break;
23                 
24     default:
25         INT_BARF( context, 0x2a );
26     }
27 }