1 | ; Project name : Assembly Library
|
---|
2 | ; Description : Functions for managing display cursor.
|
---|
3 |
|
---|
4 | ;
|
---|
5 | ; XTIDE Universal BIOS and Associated Tools
|
---|
6 | ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
|
---|
7 | ;
|
---|
8 | ; This program is free software; you can redistribute it and/or modify
|
---|
9 | ; it under the terms of the GNU General Public License as published by
|
---|
10 | ; the Free Software Foundation; either version 2 of the License, or
|
---|
11 | ; (at your option) any later version.
|
---|
12 | ;
|
---|
13 | ; This program is distributed in the hope that it will be useful,
|
---|
14 | ; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
15 | ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
16 | ; GNU General Public License for more details.
|
---|
17 | ; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
---|
18 | ;
|
---|
19 |
|
---|
20 | ; Section containing code
|
---|
21 | SECTION .text
|
---|
22 |
|
---|
23 | ;--------------------------------------------------------------------
|
---|
24 | ; DisplayCursor_GetDefaultCursorShapeToAX
|
---|
25 | ; Parameters:
|
---|
26 | ; DS: BDA segment (zero)
|
---|
27 | ; Returns:
|
---|
28 | ; AX: Default text mode cursor shape
|
---|
29 | ; Corrupts registers:
|
---|
30 | ; Nothing
|
---|
31 | ;--------------------------------------------------------------------
|
---|
32 | ALIGN DISPLAY_JUMP_ALIGN
|
---|
33 | DisplayCursor_GetDefaultCursorShapeToAX:
|
---|
34 | mov ax, CURSOR_NORMAL_COLOR ; CGA, EGA, VGA cursor
|
---|
35 | cmp BYTE [VIDEO_BDA.bMode], MDA_TEXT_MODE
|
---|
36 | eCMOVE ax, CURSOR_NORMAL_MDA ; MDA cursor
|
---|
37 | ret
|
---|
38 |
|
---|
39 |
|
---|
40 | ;--------------------------------------------------------------------
|
---|
41 | ; DisplayCursor_SetShapeFromAX
|
---|
42 | ; Parameters:
|
---|
43 | ; AX: Cursor shape (AH=Start scan line, AL=End scan line)
|
---|
44 | ; DS: BDA segment (zero)
|
---|
45 | ; Returns:
|
---|
46 | ; Nothing
|
---|
47 | ; Corrupts registers:
|
---|
48 | ; Nothing
|
---|
49 | ;--------------------------------------------------------------------
|
---|
50 | ALIGN DISPLAY_JUMP_ALIGN
|
---|
51 | DisplayCursor_SetShapeFromAX:
|
---|
52 | mov [VIDEO_BDA.displayContext+DISPLAY_CONTEXT.wCursorShape], ax
|
---|
53 | ret
|
---|
54 |
|
---|
55 |
|
---|
56 | ;--------------------------------------------------------------------
|
---|
57 | ; DisplayCursor_SetCoordinatesFromAX
|
---|
58 | ; Parameters:
|
---|
59 | ; AL: Cursor column (X-coordinate)
|
---|
60 | ; AH: Cursor row (Y-coordinate)
|
---|
61 | ; DS: BDA segment (zero)
|
---|
62 | ; Returns:
|
---|
63 | ; DI: Offset to cursor location in video RAM
|
---|
64 | ; Corrupts registers:
|
---|
65 | ; AX, DX
|
---|
66 | ;--------------------------------------------------------------------
|
---|
67 | ALIGN DISPLAY_JUMP_ALIGN
|
---|
68 | DisplayCursor_SetCoordinatesFromAX:
|
---|
69 | xchg dx, ax
|
---|
70 | mov ax, [VIDEO_BDA.wColumns] ; Column count, 40 or 80
|
---|
71 | mul dh ; AX = Column count * row index
|
---|
72 | xor dh, dh
|
---|
73 | add ax, dx ; Add column offset
|
---|
74 | shl ax, 1 ; Convert to WORD offset
|
---|
75 | add ax, [VIDEO_BDA.wPageOffset] ; AX = Video RAM offset
|
---|
76 | mov [VIDEO_BDA.displayContext+DISPLAY_CONTEXT.fpCursorPosition], ax
|
---|
77 | xchg di, ax
|
---|
78 | ret
|
---|
79 |
|
---|
80 |
|
---|
81 | ;--------------------------------------------------------------------
|
---|
82 | ; DisplayCursor_GetSoftwareCoordinatesToAX
|
---|
83 | ; Parameters:
|
---|
84 | ; AX: Offset to cursor location in selected page
|
---|
85 | ; DS: BDA segment (zero)
|
---|
86 | ; Returns:
|
---|
87 | ; AL: Cursor column (X-coordinate)
|
---|
88 | ; AH: Cursor row (Y-coordinate)
|
---|
89 | ; Corrupts registers:
|
---|
90 | ; Nothing
|
---|
91 | ;--------------------------------------------------------------------
|
---|
92 | ALIGN DISPLAY_JUMP_ALIGN
|
---|
93 | DisplayCursor_GetSoftwareCoordinatesToAX:
|
---|
94 | mov ax, [VIDEO_BDA.displayContext+DISPLAY_CONTEXT.fpCursorPosition]
|
---|
95 | sub ax, [VIDEO_BDA.wPageOffset]
|
---|
96 | shr ax, 1 ; WORD offset to character offset
|
---|
97 | div BYTE [VIDEO_BDA.wColumns] ; AL = full rows, AH = column index for last row
|
---|
98 | xchg al, ah
|
---|
99 | ret
|
---|
100 |
|
---|
101 |
|
---|
102 | ;--------------------------------------------------------------------
|
---|
103 | ; DisplayCursor_GetHardwareCoordinatesToAX
|
---|
104 | ; Parameters:
|
---|
105 | ; DS: BDA segment (zero)
|
---|
106 | ; Returns:
|
---|
107 | ; AL: Hardware cursor column (X-coordinate)
|
---|
108 | ; AH: Hardware cursor row (Y-coordinate)
|
---|
109 | ; Corrupts registers:
|
---|
110 | ; DX
|
---|
111 | ;--------------------------------------------------------------------
|
---|
112 | ALIGN DISPLAY_JUMP_ALIGN
|
---|
113 | DisplayCursor_GetHardwareCoordinatesToAX:
|
---|
114 | push cx
|
---|
115 | push bx
|
---|
116 |
|
---|
117 | mov ah, GET_CURSOR_POSITION_AND_SIZE
|
---|
118 | mov bh, [VIDEO_BDA.bActivePage]
|
---|
119 | int BIOS_VIDEO_INTERRUPT_10h
|
---|
120 | xchg ax, dx
|
---|
121 |
|
---|
122 | pop bx
|
---|
123 | pop cx
|
---|
124 | ret
|
---|
125 |
|
---|
126 |
|
---|
127 | ;--------------------------------------------------------------------
|
---|
128 | ; DisplayCursor_SynchronizeShapeToHardware
|
---|
129 | ; Parameters:
|
---|
130 | ; DS: BDA segment (zero)
|
---|
131 | ; Returns:
|
---|
132 | ; Nothing
|
---|
133 | ; Corrupts registers:
|
---|
134 | ; AX, DX
|
---|
135 | ;--------------------------------------------------------------------
|
---|
136 | ALIGN DISPLAY_JUMP_ALIGN
|
---|
137 | DisplayCursor_SynchronizeShapeToHardware:
|
---|
138 | mov dx, [VIDEO_BDA.displayContext+DISPLAY_CONTEXT.wCursorShape]
|
---|
139 | ; Fall to .SetHardwareCursorShapeFromDX
|
---|
140 |
|
---|
141 | ;--------------------------------------------------------------------
|
---|
142 | ; .SetHardwareCursorShapeFromDX
|
---|
143 | ; Parameters:
|
---|
144 | ; DX: Cursor shape
|
---|
145 | ; DS: BDA segment (zero)
|
---|
146 | ; Returns:
|
---|
147 | ; Nothing
|
---|
148 | ; Corrupts registers:
|
---|
149 | ; AX
|
---|
150 | ;--------------------------------------------------------------------
|
---|
151 | .SetHardwareCursorShapeFromDX:
|
---|
152 | cmp dx, [VIDEO_BDA.wCursorShape]
|
---|
153 | je SHORT .Return ; Return if no changes
|
---|
154 | push cx
|
---|
155 | mov cx, dx ; BIOS wants cursor shape in CX
|
---|
156 | mov al, [VIDEO_BDA.bMode] ; Load video mode to prevent lock ups on some BIOSes
|
---|
157 | mov ah, SET_TEXT_MODE_CURSOR_SHAPE
|
---|
158 | int BIOS_VIDEO_INTERRUPT_10h
|
---|
159 | pop cx
|
---|
160 | .Return:
|
---|
161 | ret
|
---|
162 |
|
---|
163 |
|
---|
164 | ;--------------------------------------------------------------------
|
---|
165 | ; DisplayCursor_SynchronizeCoordinatesToHardware
|
---|
166 | ; Parameters:
|
---|
167 | ; DS: BDA segment (zero)
|
---|
168 | ; Returns:
|
---|
169 | ; Nothing
|
---|
170 | ; Corrupts registers:
|
---|
171 | ; AX, DX
|
---|
172 | ;--------------------------------------------------------------------
|
---|
173 | ALIGN DISPLAY_JUMP_ALIGN
|
---|
174 | DisplayCursor_SynchronizeCoordinatesToHardware:
|
---|
175 | call DisplayCursor_GetSoftwareCoordinatesToAX
|
---|
176 | ; Fall to .SetHardwareCursorCoordinatesFromAX
|
---|
177 |
|
---|
178 | ;--------------------------------------------------------------------
|
---|
179 | ; .SetHardwareCursorCoordinatesFromAX
|
---|
180 | ; Parameters:
|
---|
181 | ; AL: Cursor column (X-coordinate)
|
---|
182 | ; AH: Cursor row (Y-coordinate)
|
---|
183 | ; DS: BDA segment (zero)
|
---|
184 | ; Returns:
|
---|
185 | ; Nothing
|
---|
186 | ; Corrupts registers:
|
---|
187 | ; AX, DX
|
---|
188 | ;--------------------------------------------------------------------
|
---|
189 | .SetHardwareCursorCoordinatesFromAX:
|
---|
190 | push bx
|
---|
191 | xchg dx, ax ; BIOS wants coordinates in DX
|
---|
192 | mov ah, SET_CURSOR_POSITION
|
---|
193 | mov bh, [VIDEO_BDA.bActivePage]
|
---|
194 | int BIOS_VIDEO_INTERRUPT_10h
|
---|
195 | pop bx
|
---|
196 | ret
|
---|