blob: ba25c2f44b2be3d9df9ec39e8b7e0014dae132c0 [file] [log] [blame]
#include <stdio.h>
#include <stdlib.h>
#include "msdos.h"
#include "wine.h"
int do_int2a(struct sigcontext_struct *context)
{
switch((context->sc_eax >> 8) & 0xff)
{
case 0x00: /* NETWORK INSTALLATION CHECK */
break;
default:
IntBarf(0x2a, context);
};
return 1;
}