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