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