Release 941017
[wine/gsoc-2012-control.git] / miscemu / int15.c
blob3858e8f7f9ebace70311e2da06a3b0e5b3bc5824
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include "registers.h"
4 #include "wine.h"
5 #include "stddebug.h"
6 /* #define DEBUG_INT */
7 /* #undef DEBUG_INT */
8 #include "debug.h"
10 void IntBarf(int i, struct sigcontext_struct *context);
12 int do_int15(struct sigcontext_struct *context)
14 switch(AH) {
15 case 0xc0:
17 default:
18 IntBarf(0x15, context);
20 return 1;