2 * Copyright (c) 1992, 1993, 1996
3 * Berkeley Software Design, Inc. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by Berkeley Software
18 * THIS SOFTWARE IS PROVIDED BY Berkeley Software Design, Inc. ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL Berkeley Software Design, Inc. BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * BSDI int2f.c,v 2.2 1996/04/08 19:32:53 bostic Exp
32 * $FreeBSD: src/usr.bin/doscmd/int2f.c,v 1.3.2.2 2002/04/25 11:04:51 tg Exp $
33 * $DragonFly: src/usr.bin/doscmd/int2f.c,v 1.2 2003/06/17 04:29:26 dillon Exp $
41 ** Multiplex interrupt.
43 ** subfunctions 0-0x7f reserved for DOS, some are implemented here.
48 ** 2f:00 2f:01 2f:02 2f:03
50 ** Various PRINT.COM functions
53 int2f_printer(regcontext_t
*REGS
)
55 debug (D_FILE_OPS
, "Called printer function 0x%02x", R_AH
);
56 R_AL
= FUNC_NUM_IVALID
;
63 ** DOS internal functions. Only one we support is 0x2e, and then only to
67 int2f_dosinternal(regcontext_t
*REGS
)
70 case 0x2e: /* XXX - GET/SET ERROR TABLE ADDRESSES */
76 debug(D_ALWAYS
,"DOS program attempted to get internal error table.\n");
84 debug(D_ALWAYS
,"DOS program attempted to set error table.\n");
89 unknown_int4(0x2f, 0x12, R_AL
, R_DL
, REGS
);
92 R_AL
= FUNC_NUM_IVALID
;
99 ** Windows Enhanced Mode functions. Aigh!
102 int2f_windows(regcontext_t
*REGS
)
106 R_AL
= 0x00; /* Neither Win 3.x nor 2.x running */
109 case 0x80: /* installation check */
115 unknown_int3(0x2f, 0x16, R_AL
, REGS
);
118 R_AL
= FUNC_NUM_IVALID
;
128 int2f_xms(regcontext_t
*REGS
)
131 case 0: /* installation check */
132 return(0); /* %al = 0 */
134 R_AL
= FUNC_NUM_IVALID
;
140 static struct intfunc_table int2f_table
[] = {
142 { 0x00, IFT_NOSUBFUNC
, int2f_printer
, "printer"},
143 { 0x01, IFT_NOSUBFUNC
, int2f_printer
, "printer"},
144 { 0x02, IFT_NOSUBFUNC
, int2f_printer
, "printer"},
145 { 0x03, IFT_NOSUBFUNC
, int2f_printer
, "printer"},
146 { 0x12, IFT_NOSUBFUNC
, int2f_dosinternal
, "DOS internal function"},
147 { 0x16, IFT_NOSUBFUNC
, int2f_windows
, "Windows detect"},
148 { 0x43, IFT_NOSUBFUNC
, int2f_xms
, "XMS"},
153 ** int2f (multiplex) handler.
155 ** Note that due to the widely varied and inconsistent conventions, handlers
156 ** called from here are expected to manage their own return values.
159 int2f(regcontext_t
*REGS
)
163 /* look up the handler for the current function */
164 idx
= intfunc_search(int2f_table
, R_AH
, R_AL
);
166 if (idx
>= 0) { /* respond on multiplex chain */
167 int2f_table
[idx
].handler(REGS
);
169 unknown_int2(0x2f, R_AH
, REGS
);