6 /* #define DEBUG_INT */
10 void IntBarf(int i
, struct sigcontext_struct
*context
)
12 fprintf(stderr
, "int%x: unknown/not implemented parameters:\n", i
);
13 fprintf(stderr
, "int%x: AX %04x, BX %04x, CX %04x, DX %04x, "
14 "SI %04x, DI %04x, DS %04x, ES %04x\n",
15 i
, AX
, BX
, CX
, DX
, SI
, DI
, DS
, ES
);
18 int do_int10(struct sigcontext_struct
*context
)
37 IntBarf(0x10, context
);