source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/Strings.asm@ 347

Last change on this file since 347 was 334, checked in by gregli@…, 12 years ago

Serial server DPT flag optimization, remove Serial/IDE specific header on drive scan results, added GNU GPL v2 banner at boot.

File size: 8.3 KB
Line 
1; Project name : XTIDE Universal BIOS
2; Description : Strings and equates for BIOS messages.
3
4%ifdef MODULE_STRINGS_COMPRESSED_PRECOMPRESS
5 %include "Display.inc"
6%endif
7
8; Section containing code
9SECTION .text
10
11; The following strings are used by DetectPrint_StartDetectWithMasterOrSlaveStringInCXandIdeVarsInCSBP
12; To support an optimization in that code, these strings must start on the same 256 byte page,
13; which is checked at assembly time below.
14;
15g_szDetectStart:
16g_szDetectMaster: db "Master",NULL
17g_szDetectSlave: db "Slave ",NULL
18g_szDetectOuter: db "%s at %s: ",NULL
19;%%; %ifdef MODULE_SERIAL ;%%; is stripped off after string compression, %ifdef won't compress properly
20g_szDetectCOM: db "COM%c%s",NULL
21g_szDetectCOMAuto: db " Detect",NULL
22g_szDetectCOMSmall: db "/%u%u00",NULL ; IDE Master at COM1/9600:
23g_szDetectCOMLarge: db "/%u.%uK",NULL ; IDE Master at COM1/19.2K:
24;%%; %endif ;%%; is stripped off after string compression, %ifdef won't compress properly
25g_szDetectEnd:
26g_szDetectPort: db "%x",NULL ; IDE Master at 1F0h:
27
28%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
29 %if ((g_szDetectEnd-$$) & 0xff00) <> ((g_szDetectStart-$$) & 0xff00)
30 %error "g_szDetect* strings must start on the same 256 byte page, required by DetectPrint_StartDetectWithMasterOrSlaveStringInCXandIdeVarsInCSBP. Please move this block up or down within strings.asm"
31 %endif
32%endif
33
34; Boot Menu Floppy Disk strings
35;
36; The following strings are used by BootMenuPrint_RefreshInformation
37; To support optimizations in that code, these strings must start on the same 256 byte page,
38; which is checked at assembly time below.
39;
40g_szFddStart:
41g_szFddUnknown: db "Unknown",NULL
42g_szFddSizeOr: db "5",ONE_QUARTER,QUOTATION_MARK," or 3",ONE_HALF,QUOTATION_MARK," DD",NULL
43g_szFddSize: db "%s",QUOTATION_MARK,", %u kiB",NULL ; 3½", 1440 kiB
44g_szFddThreeHalf: db "3",ONE_HALF,NULL
45g_szFddEnd:
46g_szFddFiveQuarter: db "5",ONE_QUARTER,NULL
47
48%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
49 %if ((g_szFddStart-$$) & 0xff00) <> ((g_szFddEnd-$$) & 0xff00)
50 %error "g_szFdd* strings must start on the same 256 byte page, required by the BootMenuPrint_RefreshInformation routines for floppy drives. Please move this block up or down within strings.asm"
51 %endif
52%endif
53
54; POST drive detection strings
55g_szRomAt: db "%s @ %x",LF,CR
56 db "Released under GNU GPL v2",LF,CR,LF,CR,NULL
57
58; Boot loader strings
59g_szTryToBoot: db "Booting from %s %x",ANGLE_QUOTE_RIGHT,"%x",LF,CR,NULL
60g_szBootSectorNotFound: db "Boot sector "
61g_szNotFound: db "not found",LF,CR,NULL
62g_szReadError: db "Error %x!",LF,CR,NULL
63
64g_szAddressingModes:
65g_szLCHS: db "L-CHS",NULL
66g_szPCHS: db "P-CHS",NULL
67g_szLBA28: db "LBA28",NULL
68g_szLBA48: db "LBA48",NULL
69g_szAddressingModes_Displacement equ (g_szPCHS - g_szAddressingModes)
70;
71; Ensure that addressing modes are correctly spaced in memory
72;
73%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
74 %if g_szLCHS <> g_szAddressingModes
75 %error "g_szAddressingModes Displacement Incorrect 1"
76 %endif
77 %if g_szPCHS <> g_szLCHS + g_szAddressingModes_Displacement
78 %error "g_szAddressingModes Displacement Incorrect 2"
79 %endif
80 %if g_szLBA28 <> g_szPCHS + g_szAddressingModes_Displacement
81 %error "g_szAddressingModes Displacement Incorrect 3"
82 %endif
83 %if g_szLBA48 <> g_szLBA28 + g_szAddressingModes_Displacement
84 %error "g_szAddressingModes Displacement Incorrect 4"
85 %endif
86%endif
87
88g_szBusTypeValues:
89g_szBusTypeValues_8Dual: db "D8 ",NULL
90g_szBusTypeValues_8Reversed: db "X8 ",NULL
91g_szBusTypeValues_8Single: db "S8 ",NULL
92g_szBusTypeValues_16: db " 16",NULL
93g_szBusTypeValues_32: db " 32",NULL
94g_szBusTypeValues_Serial: db "SER",NULL
95g_szBusTypeValues_8MemMapped: db "M8 ",NULL
96g_szBusTypeValues_Displacement equ (g_szBusTypeValues_8Reversed - g_szBusTypeValues)
97;
98; Ensure that bus type strings are correctly spaced in memory
99;
100%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
101 %if g_szBusTypeValues_8Dual <> g_szBusTypeValues
102 %error "g_szBusTypeValues Displacement Incorrect 1"
103 %endif
104 %if g_szBusTypeValues_8Reversed <> g_szBusTypeValues + g_szBusTypeValues_Displacement
105 %error "g_szBusTypeValues Displacement Incorrect 2"
106 %endif
107 %if g_szBusTypeValues_8Single <> g_szBusTypeValues_8Reversed + g_szBusTypeValues_Displacement
108 %error "g_szBusTypeValues Displacement Incorrect 3"
109 %endif
110 %if g_szBusTypeValues_16 <> g_szBusTypeValues_8Single + g_szBusTypeValues_Displacement
111 %error "g_szBusTypeValues Displacement Incorrect 4"
112 %endif
113 %if g_szBusTypeValues_32 <> g_szBusTypeValues_16 + g_szBusTypeValues_Displacement
114 %error "g_szBusTypeValues Displacement Incorrect 5"
115 %endif
116 %if g_szBusTypeValues_Serial <> g_szBusTypeValues_32 + g_szBusTypeValues_Displacement
117 %error "g_szBusTypeValues Displacement Incorrect 6"
118 %endif
119 %if g_szBusTypeValues_8MemMapped <> g_szBusTypeValues_Serial + g_szBusTypeValues_Displacement
120 %error "g_szBusTypeValues Displacement Incorrect 7"
121 %endif
122%endif
123
124g_szSelectionTimeout: db DOUBLE_BOTTOM_LEFT_CORNER,DOUBLE_LEFT_HORIZONTAL_TO_SINGLE_VERTICAL,"%ASelection in %2-u s",NULL
125
126g_szDashForZero: db "- ",NULL
127
128; Boot menu bottom of screen strings
129g_szFDD: db "FDD ",NULL
130g_szHDD: db "HDD ",NULL
131g_szRomBoot: db "ROM Boot",NULL
132g_szHotkey: db "%A%c%c%A%s%A ",NULL
133
134; Boot Menu information strings
135g_szCapacity: db "Capacity : %s",NULL
136g_szCapacityNum: db "%5-u.%u %ciB",NULL
137g_szInformation: db "%s",LF,CR
138 db "Addr.",SINGLE_VERTICAL,"Block",SINGLE_VERTICAL,"Bus",SINGLE_VERTICAL, "IRQ",SINGLE_VERTICAL,"Reset",LF,CR
139 db "%s",SINGLE_VERTICAL, "%5-u",SINGLE_VERTICAL, "%s",SINGLE_VERTICAL," %2-I",SINGLE_VERTICAL,"%5-x" ,NULL
140
141; Boot Menu menuitem strings
142;
143; The following strings are used by BootMenuPrint_* routines.
144; To support optimizations in that code, these strings must start on the same 256 byte page,
145; which is checked at assembly time below.
146;
147g_szBootMenuPrintStart:
148g_szDriveNum: db "%x %s",NULL
149g_szDriveNumBOOTNFO: db "%x %z",NULL
150g_szFloppyDrv: db "Floppy Drive %c",NULL
151g_szBootMenuPrintEnd:
152g_szForeignHD: db "Foreign Hard Disk",NULL
153
154%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
155 %if ((g_szBootMenuPrintStart-$$) & 0xff00) <> ((g_szBootMenuPrintEnd-$$) & 0xff00)
156 %error "g_szBootMenuPrint* strings must start on the same 256 byte page, required by the BootMenuPrint_* routines. Please move this block up or down within strings.asm"
157 %endif
158%endif
159
160;------------------------------------------------------------------------------------------
161;
162; Tables for StringsCompress.pl
163;
164;$translate{ord(' ')} = 0;
165;$translate{172} = 1; # ONE_QUARTER
166;$translate{171} = 2; # ONE_HALF
167;$translate{179} = 3; # SINGLE_VERTICAL
168;$translate{175} = 4; # ANGLE_QUOTE_RIGHT
169;$translate{ord('!')} = 5;
170;$translate{ord('"')} = 6;
171;$translate{ord(',')} = 7;
172;$translate{ord('-')} = 8;
173;$translate{ord('.')} = 9;
174;$translate{ord('/')} = 10;
175;$translate{ord('1')} = 11;
176;$translate{ord('2')} = 12;
177;$translate{ord('3')} = 13;
178;$translate{ord('4')} = 14;
179;$translate{ord('5')} = 15;
180;$translate{ord('6')} = 16;
181;$translate{ord('8')} = 17;
182;$translate{200} = 18; # DOUBLE_BOTTOM_LEFT_CORNER
183;$translate{181} = 19; # DOUBLE_LEFT_HORIZONTAL_TO_SINGLE_VERTICAL
184;$translate{ord('0')} = 20;
185;
186; Formats begin immediately after the last Translated character (they are in the same table)
187;
188;$format_begin = 21;
189;
190;$format{"c"} = 21; # n/a
191;$format{"2-I"} = 22; # must be even
192;$format{"u"} = 23; # must be odd
193;$format{"5-u"} = 24; # must be even
194;$format{"x"} = 25; # must be odd
195;$format{"5-x"} = 26; # must be even
196;$format{"nl"} = 27; # n/a
197;$format{"2-u"} = 28; # must be even
198;$format{"A"} = 29; # n/a
199;$format{"s"} = 30; # n/a, normal string from DS
200;$format{"z"} = 31; # n/a, boot string from BDA
201;
202; NOTE: The last $format cannot exceed 31 (stored in a 5-bit quantity).
203;
204; Starting point for the "normal" range, typically around 0x40 to cover upper and lower case
205; letters. If lower case 'z' is not used, 0x3a can be a good choice as it adds ':' to the
206; front end.
207;
208;$normal_base = 0x3a;
209;
210; End of StringsCompress.pl information
211;
212;------------------------------------------------------------------------------------------
213
214
Note: See TracBrowser for help on using the repository browser.