biosvideomode.S revision 1.3 1 1.3 dsl /* $NetBSD: biosvideomode.S,v 1.3 2003/04/16 13:49:21 dsl Exp $ */
2 1.1 tsarna
3 1.1 tsarna /*
4 1.1 tsarna * Copyright (c) 1996
5 1.1 tsarna * Perry E. Metzger. All rights reserved.
6 1.1 tsarna *
7 1.1 tsarna * Redistribution and use in source and binary forms, with or without
8 1.1 tsarna * modification, are permitted provided that the following conditions
9 1.1 tsarna * are met:
10 1.1 tsarna * 1. Redistributions of source code must retain the above copyright
11 1.1 tsarna * notice, this list of conditions and the following disclaimer.
12 1.1 tsarna * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 tsarna * notice, this list of conditions and the following disclaimer in the
14 1.1 tsarna * documentation and/or other materials provided with the distribution.
15 1.1 tsarna * 3. All advertising materials mentioning features or use of this software
16 1.1 tsarna * must display the following acknowledgements:
17 1.1 tsarna * This product includes software developed for the NetBSD Project
18 1.1 tsarna * by Perry E. Metzger.
19 1.1 tsarna * 4. The names of the authors may not be used to endorse or promote products
20 1.1 tsarna * derived from this software without specific prior written permission.
21 1.1 tsarna *
22 1.1 tsarna * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 tsarna * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 tsarna * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 tsarna * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 tsarna * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 tsarna * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 tsarna * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 tsarna * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 tsarna * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 tsarna * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 tsarna *
33 1.1 tsarna */
34 1.1 tsarna
35 1.1 tsarna #include <machine/asm.h>
36 1.1 tsarna
37 1.1 tsarna .text
38 1.1 tsarna
39 1.1 tsarna ENTRY(biosvideomode)
40 1.1 tsarna pushl %ebp
41 1.1 tsarna movl %esp,%ebp
42 1.1 tsarna pushl %ebx
43 1.1 tsarna push %esi
44 1.1 tsarna push %edi
45 1.1 tsarna
46 1.1 tsarna call _C_LABEL(prot_to_real)
47 1.2 dsl .code16
48 1.1 tsarna
49 1.1 tsarna movb $0, %ah
50 1.1 tsarna movb $2, %al
51 1.1 tsarna int $0x10
52 1.1 tsarna # zero-extend 16-bit result to 32 bits.
53 1.1 tsarna movl $0, %ebx
54 1.2 dsl movw %ax,%bx
55 1.1 tsarna
56 1.2 dsl calll _C_LABEL(real_to_prot)
57 1.2 dsl .code32
58 1.1 tsarna
59 1.1 tsarna movl %ebx, %eax
60 1.1 tsarna
61 1.1 tsarna pop %edi
62 1.1 tsarna pop %esi
63 1.1 tsarna popl %ebx
64 1.1 tsarna popl %ebp
65 1.1 tsarna ret
66