blob: 67a0b7aceddacbc2878d13cd0b090a86d0788c86 [file] [log] [blame]
#include <stdio.h>
#include <stdlib.h>
#include "registers.h"
#include "wine.h"
int do_int15(struct sigcontext_struct *context)
{
switch(AH) {
case 0xc0:
default:
IntBarf(0x15, context);
};
return 1;
}