Release 941017
[wine/gsoc-2012-control.git] / miscemu / int16.c
blobc1294f888b8f009a1ad25894f7f175e99cf50c0a
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_int16(struct sigcontext_struct *context)
14 switch(AH) {
15 case 0xc0:
17 default:
18 IntBarf(0x16, context);
20 return 1;