Release 941227
[wine/multimedia.git] / miscemu / int2a.c
blob63ed11d4bfeab6852b75aca86d1d725e160881bc
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include "msdos.h"
4 #include "wine.h"
5 #include "miscemu.h"
6 #include "stddebug.h"
7 /* #define DEBUG_INT */
8 #include "debug.h"
10 int do_int2a(struct sigcontext_struct *context)
12 switch((context->sc_eax >> 8) & 0xff)
14 case 0x00: /* NETWORK INSTALLATION CHECK */
15 break;
17 default:
18 IntBarf(0x2a, context);
20 return 1;