Sweden-Number/miscemu/int16.c

17 lines
237 B
C

#include <stdio.h>
#include <stdlib.h>
#include "msdos.h"
#include "wine.h"
int do_int16(struct sigcontext_struct *context)
{
switch((context->sc_eax >> 8) & 0xff)
{
case 0xc0:
default:
IntBarf(0x16, context);
};
return 1;
}