1 | ; Project name : AssemblyLibrary
|
---|
2 | ; Description : Defines for display library.
|
---|
3 | %ifndef DISPLAY_INC
|
---|
4 | %define DISPLAY_INC
|
---|
5 |
|
---|
6 | %ifndef MODULE_STRINGS_COMPRESSED_PRECOMPRESS
|
---|
7 | ;--------------------------------------------------------------------
|
---|
8 | ; Display Library users need to use this macro since it will provide
|
---|
9 | ; compatibility with future library versions.
|
---|
10 | ;
|
---|
11 | ; CALL_DISPLAY_LIBRARY
|
---|
12 | ; Parameters:
|
---|
13 | ; %1: Function to call (functionName from DISPLAY_LIB)
|
---|
14 | ; Registers: Depends on function to call
|
---|
15 | ; Returns:
|
---|
16 | ; Depends on function to call
|
---|
17 | ; Corrupts registers:
|
---|
18 | ; AX (unless used as a return register), DI
|
---|
19 | ;--------------------------------------------------------------------
|
---|
20 | %macro CALL_DISPLAY_LIBRARY 1
|
---|
21 | %ifidn %1, PushDisplayContext
|
---|
22 | call DisplayContext_Push
|
---|
23 | %elifidn %1, PopDisplayContext
|
---|
24 | call DisplayContext_Pop
|
---|
25 | %elifidn %1, PrepareOffScreenBufferInESBXwithLengthInCX
|
---|
26 | call DisplayContext_PrepareOffScreenBufferInESBXwithLengthInCX
|
---|
27 | %else
|
---|
28 | mov di, %1
|
---|
29 | call Display_FunctionFromDI
|
---|
30 | %endif
|
---|
31 | %endmacro
|
---|
32 |
|
---|
33 | %if 0
|
---|
34 | ;;;
|
---|
35 | ;;; struc no longer needed with direct calls to functions
|
---|
36 | ;;;
|
---|
37 |
|
---|
38 | ; Display library functions
|
---|
39 | struc DISPLAY_LIB
|
---|
40 | .PushDisplayContext:
|
---|
41 | .PopDisplayContext:
|
---|
42 | .InitializeDisplayContext resb 2
|
---|
43 |
|
---|
44 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
45 | .SetCharacterPointerFromBXAX resb 2
|
---|
46 | %endif
|
---|
47 | .SetCharOutputFunctionFromAXwithAttribFlagInBL resb 2
|
---|
48 | .SetCharacterOutputParameterFromAX resb 2
|
---|
49 | .SetCharacterAttributeFromAL resb 2
|
---|
50 | .SetCursorShapeFromAX resb 2
|
---|
51 | .SetCursorCoordinatesFromAX resb 2
|
---|
52 | .SetNewPageFromAL resb 2
|
---|
53 | .SynchronizeDisplayContextToHardware resb 2
|
---|
54 |
|
---|
55 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
56 | .GetCharacterPointerToBXAX resb 2
|
---|
57 | %endif
|
---|
58 | .GetSoftwareCoordinatesToAX resb 2
|
---|
59 | .GetColumnsToALandRowsToAH resb 2
|
---|
60 |
|
---|
61 | .FormatNullTerminatedStringFromCSSI resb 2
|
---|
62 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
63 | .PrintSignedWordFromAXWithBaseInBX resb 2
|
---|
64 | %endif
|
---|
65 | .PrintWordFromAXwithBaseInBX resb 2
|
---|
66 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
67 | .PrintQWordFromSSBPwithBaseInBX resb 2
|
---|
68 | %endif
|
---|
69 | .PrintCharBufferFromBXSIwithLengthInCX resb 2
|
---|
70 | .PrintNullTerminatedStringFromBXSI resb 2
|
---|
71 | .PrintNullTerminatedStringFromCSSI resb 2
|
---|
72 | .PrintRepeatedCharacterFromALwithCountInCX resb 2
|
---|
73 | .PrintCharacterFromAL resb 2
|
---|
74 | .PrintNewlineCharacters resb 2
|
---|
75 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
76 | .ClearAreaWithHeightInAHandWidthInAL resb 2
|
---|
77 | %endif
|
---|
78 | .ClearScreenWithCharInALandAttrInAH resb 2
|
---|
79 | endstruc
|
---|
80 | %endif
|
---|
81 |
|
---|
82 | ; Attribute flags for DISPLAY_LIB.SetCharacterOutputFunctionFromAXwithAttributeFlagInDL
|
---|
83 | ATTRIBUTES_NOT_USED EQU 0
|
---|
84 | ATTRIBUTES_ARE_USED EQU FLG_CONTEXT_ATTRIBUTES
|
---|
85 |
|
---|
86 | ; Character output functions for DISPLAY_LIB.SetCharacterOutputFunctionFromAXwithAttributeFlagInDL
|
---|
87 | TELETYPE_OUTPUT_WITH_ATTRIBUTE EQU DisplayCharOut_TeletypeOutputWithAttribute
|
---|
88 | TELETYPE_OUTPUT_WITHOUT_ATTRIBUTE EQU DisplayCharOut_TeletypeOutput
|
---|
89 | TELETYPE_OUTPUT_USING_BIOS EQU DisplayCharOut_BiosTeletypeOutput
|
---|
90 | FAST_OUTPUT_WITH_ATTRIBUTE_ONLY EQU DisplayCharOut_Attribute
|
---|
91 | FAST_OUTPUT_WITH_CHAR_ONLY EQU DisplayCharOut_Character
|
---|
92 | FAST_OUTPUT_WITH_CHAR_AND_ATTRIBUTE EQU DisplayCharOut_CharacterWithAttribute
|
---|
93 | BUFFER_OUTPUT_WITH_CHAR_ONLY EQU DisplayCharOut_WriteCharacterToBuffer
|
---|
94 |
|
---|
95 | DEFAULT_CHARACTER_OUTPUT EQU TELETYPE_OUTPUT_WITH_ATTRIBUTE
|
---|
96 |
|
---|
97 |
|
---|
98 | struc VIDEO_BDA
|
---|
99 | resb 449h
|
---|
100 | .bMode resb 1 ; 0:449h, Video, Mode
|
---|
101 | .wColumns resb 2 ; 0:44Ah, Video, Number of columns
|
---|
102 | .wBytesPerPage resb 2 ; 0:44Ch, Video, Total number of bytes per page
|
---|
103 | .wPageOffset resb 2 ; 0:44Eh, Video, Current page offset
|
---|
104 | .rgwCursors resb 4 ; 0:450h, Video, Cursor position, pages 0...1
|
---|
105 | .displayContext resb 12 ; Our own display context (normally cursors for pages 2...7)
|
---|
106 | .wCursorShape resb 2 ; 0:460h, Video, Cursor shape
|
---|
107 | .bActivePage resb 1 ; 0:462h, Video, Active display page
|
---|
108 | .wVideoPort resb 2 ; 0:463h, Video, I/O Port number base
|
---|
109 | .bInternalModeReg resb 1 ; 0:465h, Video, Internal mode register
|
---|
110 | .bColorPalette resb 1 ; 0:466h, Video, Color palette
|
---|
111 | endstruc
|
---|
112 |
|
---|
113 | struc DISPLAY_CONTEXT
|
---|
114 | .fpCursorPosition resb 4 ; Far pointer to cursor position in video memory
|
---|
115 | .fnCharOut resb 2 ; Function to draw character with
|
---|
116 | .wCharOutParam resb 2 ; User parameter for custom character output function
|
---|
117 | .wCursorShape resb 2 ; Current cursor shape
|
---|
118 | .bAttribute resb 1 ; Selected character attribute
|
---|
119 | .bFlags resb 1 ; Display context flags
|
---|
120 | endstruc
|
---|
121 |
|
---|
122 | ; Display context flags
|
---|
123 | FLG_CONTEXT_ATTRIBUTES EQU (1<<0) ; Character output function uses attributes
|
---|
124 | FLG_CONTEXT_CGA EQU (1<<1) ; CGA detected so prevent CGA snow
|
---|
125 |
|
---|
126 |
|
---|
127 | ; Text mode character attribute byte bits for CGA+ (color adapters)
|
---|
128 | FLG_COLOR_FORE_BLUE EQU (1<<0)
|
---|
129 | FLG_COLOR_FORE_GREEN EQU (1<<1)
|
---|
130 | FLG_COLOR_FORE_RED EQU (1<<2)
|
---|
131 | FLG_COLOR_FORE_INTENSITY EQU (1<<3)
|
---|
132 | FLG_COLOR_FORE_FONT_B EQU (1<<3) ; Select font set B (if available, EGA+)
|
---|
133 | FLG_COLOR_BACK_BLUE EQU (1<<4)
|
---|
134 | FLG_COLOR_BACK_GREEN EQU (1<<5)
|
---|
135 | FLG_COLOR_BACK_RED EQU (1<<6)
|
---|
136 | FLG_COLOR_BACK_INTENSITY EQU (1<<7) ; Intensity when blinking is disabled
|
---|
137 | FLG_COLOR_BLINK EQU (1<<7) ; Blinking color when enabled (enabled by default)
|
---|
138 |
|
---|
139 | ; CGA colors
|
---|
140 | %define COLOR_ATTRIBUTE(foreground, background) ( (foreground) | ((background)<<4) )
|
---|
141 | COLOR_BLACK EQU 0
|
---|
142 | COLOR_BLUE EQU 1
|
---|
143 | COLOR_GREEN EQU 2
|
---|
144 | COLOR_CYAN EQU 3
|
---|
145 | COLOR_RED EQU 4
|
---|
146 | COLOR_MAGENTA EQU 5
|
---|
147 | COLOR_BROWN EQU 6
|
---|
148 | COLOR_WHITE EQU 7 ; Last background color if blinking enabled
|
---|
149 | COLOR_GRAY EQU 8
|
---|
150 | COLOR_LIGHT_BLUE EQU 9
|
---|
151 | COLOR_LIGHT_GREEN EQU 10
|
---|
152 | COLOR_LIGHT_CYAN EQU 11
|
---|
153 | COLOR_LIGHT_RED EQU 12
|
---|
154 | COLOR_LIGHT_MAGENTA EQU 13
|
---|
155 | COLOR_YELLOW EQU 14
|
---|
156 | COLOR_BRIGHT_WHITE EQU 15
|
---|
157 |
|
---|
158 |
|
---|
159 | ; Text mode character attribute byte bits for MDA (monochrome adapters)
|
---|
160 | ; (attributes 00h, 08h, 80h, 88h, 70h, 78h, F0h and F8h are exceptions)
|
---|
161 | FLG_MONO_UNDERLINE EQU (1<<1)
|
---|
162 | FLG_MONO_INTENSITY EQU (1<<3)
|
---|
163 | FLG_MONO_BLINK EQU (1<<7)
|
---|
164 |
|
---|
165 | ; Text mode character attribute bytes for MDA/Hercules (monochrome adapters)
|
---|
166 | ; *Not displayed on some monitors
|
---|
167 | MONO_HIDDEN EQU 00h ; Not displayed (same for 08h, 80h and 88h)
|
---|
168 | MONO_UNDERLINE EQU 01h ; Underlined
|
---|
169 | MONO_NORMAL EQU 07h ; Normal (white on black)
|
---|
170 | MONO_BRIGHT_UNDERLINE EQU 09h ; High intensity, underlined
|
---|
171 | MONO_BRIGHT EQU 0Fh ; High intensity
|
---|
172 | MONO_REVERSE EQU 70h ; Reverse video (black on white)
|
---|
173 | MONO_REVERSE_DARK EQU 78h ; (dark green on green)
|
---|
174 | MONO_BLINK EQU 87h ; Blinking white on black*
|
---|
175 | MONO_BRIGHT_BLINK EQU 8Fh ; Blinking high intensity*
|
---|
176 | MONO_REVERSE_BLINK EQU 0F0h ; Blinking reverse video
|
---|
177 | MONO_REVERSE_DARK_BLINK EQU 0F8h ; (blinking dark green on green)
|
---|
178 |
|
---|
179 |
|
---|
180 | ; Cursor position macro for DX register
|
---|
181 | %define CURSOR_XY(x, y) ( (x) | ((y)<<8) )
|
---|
182 |
|
---|
183 | ; Cursor shapes
|
---|
184 | CURSOR_NORMAL EQU 0607h ; Two line cursor near or at the bottom of cell (not valid for IBM MDA)
|
---|
185 | CURSOR_HIDDEN EQU 2000h
|
---|
186 |
|
---|
187 |
|
---|
188 | ; Display modes
|
---|
189 | CGA_TEXT_MODE_BW40 EQU 0 ; Applications should use...
|
---|
190 | CGA_TEXT_MODE_CO40 EQU 1
|
---|
191 | CGA_TEXT_MODE_BW80 EQU 2 ; ..black, white and bright white attributes only
|
---|
192 | CGA_TEXT_MODE_CO80 EQU 3
|
---|
193 | MDA_TEXT_MODE EQU 7 ; Real monochrome attributes available
|
---|
194 |
|
---|
195 |
|
---|
196 | ; Display segments
|
---|
197 | COLOR_TEXT_SEGMENT EQU 0B800h ; Text modes 0...3 (CGA+)
|
---|
198 | MONO_TEXT_SEGMENT EQU 0B000h ; Text mode 7 (MDA, Hercules)
|
---|
199 |
|
---|
200 | OFFSET_TO_CGA_STATUS_REGISTER EQU 6 ; Base port 3D4h + 6 = 3DAh
|
---|
201 | CGA_STATUS_REGISTER EQU 3DAh
|
---|
202 |
|
---|
203 | %endif ; MODULE_STRINGS_COMPRESS_PRECOMPRESS
|
---|
204 |
|
---|
205 | ; Control characters for teletype output
|
---|
206 | NULL EQU 00h
|
---|
207 | SOH EQU 01h ; Start of heading
|
---|
208 | STX EQU 02h ; Start of text
|
---|
209 | BELL EQU 07h ; Bell
|
---|
210 | BS EQU 08h ; Backspace
|
---|
211 | TAB EQU 09h ; Horizontal TAB
|
---|
212 | LF EQU 0Ah ; Line feed (newline)
|
---|
213 | CR EQU 0Dh ; Carriage return
|
---|
214 | ESC EQU 1Bh ; Escape
|
---|
215 |
|
---|
216 | ; Non ASCII characters (code page 437)
|
---|
217 | BETA EQU 225
|
---|
218 | QUOTATION_MARK EQU 34
|
---|
219 | DOUBLE_TOP_RIGHT_CORNER EQU 187
|
---|
220 | DOUBLE_TOP_LEFT_CORNER EQU 201
|
---|
221 | DOUBLE_BOTTOM_RIGHT_CORNER EQU 188
|
---|
222 | DOUBLE_BOTTOM_LEFT_CORNER EQU 200
|
---|
223 | DOUBLE_VERTICAL EQU 186
|
---|
224 | DOUBLE_HORIZONTAL EQU 205
|
---|
225 | DOUBLE_VERTICAL_TO_RIGHT_SINGLE EQU 199
|
---|
226 | DOUBLE_VERTICAL_TO_LEFT_SINGLE EQU 182
|
---|
227 | DOUBLE_LEFT_HORIZONTAL_TO_SINGLE_VERTICAL EQU 181
|
---|
228 | DOUBLE_RIGHT_HORIZONTAL_TO_SINGLE_VERTICAL EQU 198
|
---|
229 | SINGLE_VERTICAL EQU 179
|
---|
230 | SINGLE_HORIZONTAL EQU 196
|
---|
231 | SINGLE_LEFT_HORIZONTAL_TO_VERTICAL EQU 180
|
---|
232 | SINGLE_RIGHT_HORIZONTAL_TO_VERTICAL EQU 195
|
---|
233 | ANGLE_QUOTE_LEFT EQU 174
|
---|
234 | ANGLE_QUOTE_RIGHT EQU 175
|
---|
235 | BLOCK_MOSTLY_BACKGROUND EQU 176
|
---|
236 | BLOCK_EVEN_BACKGROUND_AND_FOREGROUND EQU 177
|
---|
237 | BLOCK_MOSTLY_FOREGROUND EQU 178
|
---|
238 | BLOCK_FULL_FOREGROUND EQU 219
|
---|
239 | ONE_HALF EQU 171
|
---|
240 | ONE_QUARTER EQU 172
|
---|
241 |
|
---|
242 |
|
---|
243 | ; Background character for clearing screen
|
---|
244 | %ifndef SCREEN_BACKGROUND_CHARACTER
|
---|
245 | %define SCREEN_BACKGROUND_CHARACTER BLOCK_MOSTLY_BACKGROUND
|
---|
246 | %endif
|
---|
247 | %ifndef SCREEN_BACKGROUND_ATTRIBUTE
|
---|
248 | %define SCREEN_BACKGROUND_ATTRIBUTE MONO_NORMAL
|
---|
249 | %endif
|
---|
250 | %define SCREEN_BACKGROUND_CHARACTER_AND_ATTRIBUTE (SCREEN_BACKGROUND_CHARACTER | (SCREEN_BACKGROUND_ATTRIBUTE<<8))
|
---|
251 | %define DOS_BACKGROUND_CHARACTER_AND_ATTRIBUTE (' ' | (MONO_NORMAL<<8))
|
---|
252 |
|
---|
253 | %endif ; DISPLAY_INC
|
---|