Explicitly initialize on open instead of initializing via __constructor;
[syslinux.git] / font.inc
blob04080ba7a87d93f250b01d6e2a36f7fdba59b7bc
1 ;; -----------------------------------------------------------------------
2 ;;
3 ;;   Copyright 1994-2006 H. Peter Anvin - All Rights Reserved
4 ;;
5 ;;   This program is free software; you can redistribute it and/or modify
6 ;;   it under the terms of the GNU General Public License as published by
7 ;;   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
8 ;;   Boston MA 02111-1307, USA; either version 2 of the License, or
9 ;;   (at your option) any later version; incorporated herein by reference.
11 ;; -----------------------------------------------------------------------
14 ;; font.inc
16 ;; VGA font handling code
19                 section .text
22 ; loadfont:     Load a .psf font file and install it onto the VGA console
23 ;               (if we're not on a VGA screen then ignore.)  It is called with
24 ;               SI and DX:AX set by routine searchdir
26 loadfont:
27                 mov bx,trackbuf                 ; The trackbuf is >= 16K; the part
28                 mov cx,[BufSafe]                ; of a PSF file we care about is no
29                 call getfssec                   ; more than 8K+4 bytes
31                 mov ax,[trackbuf]               ; Magic number
32                 cmp ax,0436h
33                 jne lf_ret
35                 mov al,[trackbuf+2]             ; File mode
36                 cmp al,5                        ; Font modes 0-5 supported
37                 ja lf_ret
39                 mov bh,byte [trackbuf+3]        ; Height of font
40                 cmp bh,2                        ; VGA minimum
41                 jb lf_ret
42                 cmp bh,32                       ; VGA maximum
43                 ja lf_ret
45                 ; Copy to font buffer
46                 mov si,trackbuf+4               ; Start of font data
47                 mov [VGAFontSize],bh
48                 mov di,vgafontbuf
49                 mov cx,(32*256) >> 2            ; Maximum size
50                 rep movsd
52                 mov [UserFont], byte 1          ; Set font flag
54                 ; Fall through to use_font
57 ; use_font:
58 ;       This routine activates whatever font happens to be in the
59 ;       vgafontbuf, and updates the adjust_screen data.
60 ;       Must be called with CS = DS = ES
62 use_font:
63                 test byte [UsingVGA], ~03h      ; Nonstandard mode?
64                 jz .modeok
65                 call vgaclearmode
67 .modeok:
68                 test [UserFont], byte 1         ; Are we using a user-specified font?
69                 jz adjust_screen                ; If not, just do the normal stuff
71                 mov bp,vgafontbuf
72                 mov bh,[VGAFontSize]
74                 xor bl,bl                       ; Needed by both INT 10h calls
76                 test byte [UsingVGA], 01h       ; Are we in graphics mode?
77                 jz .text
78                 
79 .graphics:
80                 xor cx,cx
81                 mov cl,bh                       ; CX = bytes/character
82                 mov ax,[GXPixRows]
83                 div cl                          ; Compute char rows per screen
84                 mov dl,al
85                 dec ax
86                 mov [VidRows],al
87                 mov ax,1121h                    ; Set user character table
88                 int 10h
89                 mov ax,[GXPixCols]
90                 shr ax,3                        ; 8 pixels/character
91                 dec ax
92                 mov [VidCols],al
93 .lf_ret:        ret                             ; No need to call adjust_screen
95 .text:
96                 mov cx,256
97                 xor dx,dx
98                 mov ax,1110h
99                 int 10h                         ; Load into VGA RAM
101                 xor bl,bl
102                 mov ax,1103h                    ; Select page 0
103                 int 10h
105                 ; Fall through to adjust_screen
107 lf_ret          equ use_font.lf_ret
110 ; adjust_screen: Set the internal variables associated with the screen size.
111 ;               This is a subroutine in case we're loading a custom font.
113 adjust_screen:
114                 pusha
115                 mov al,[BIOS_vidrows]
116                 and al,al
117                 jnz vidrows_ok
118                 mov al,24                       ; No vidrows in BIOS, assume 25
119                                                 ; (Remember: vidrows == rows-1)
120 vidrows_ok:     mov [VidRows],al
121                 mov ah,0fh
122                 int 10h                         ; Read video state
123                 dec ah                          ; Store count-1 (same as rows)
124                 mov [VidCols],ah
125                 popa
126                 ret
129 ; VGA font buffer at the end of memory (so loading a font works even
130 ; in graphics mode, but don't put too much pressure on the .bss)
131                 section .latebss
132 vgafontbuf      resb 8192
134                 section .data
135                 align 2, db 0
136 VGAFontSize     dw 16                   ; Defaults to 16 byte font
137 UserFont        db 0                    ; Using a user-specified font
139                 section .bss
140                 alignb 4
141 GXPixCols       resw 1                  ; Graphics mode pixel columns
142 GXPixRows       resw 1                  ; Graphics mode pixel rows