Release 940815
[wine/gsoc-2012-control.git] / miscemu / int2a.c
blobba25c2f44b2be3d9df9ec39e8b7e0014dae132c0
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include "msdos.h"
4 #include "wine.h"
6 int do_int2a(struct sigcontext_struct *context)
8 switch((context->sc_eax >> 8) & 0xff)
10 case 0x00: /* NETWORK INSTALLATION CHECK */
11 break;
13 default:
14 IntBarf(0x2a, context);
16 return 1;