Release 941017
[wine] / miscemu / int16.c
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"
9
10 void IntBarf(int i, struct sigcontext_struct *context);
11
12 int do_int16(struct sigcontext_struct *context)
13 {
14         switch(AH) {
15         case 0xc0:
16                 
17         default:
18                 IntBarf(0x16, context);
19         };
20         return 1;
21 }