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

Last change on this file since 333 was 332, checked in by krille_n_@…, 12 years ago

Changes:

  • Fixed a bug in the new BIOS Drive Information Tool.
  • Very small changes to improve speed (I hope).
  • Changed AH48h_GetExtendedDriveParameters.asm to allow AT builds with USE_386 (won't affect any other builds).
  • Verified that most define combinations can be built and changed Strings.asm accordingly. "Most" meaning with or without any combination of EBIOS and/or Serial code defines.
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; POST drive detection strings
12g_szRomAt: db "%s @ %x",LF,CR,NULL
13
14; Boot loader strings
15g_szTryToBoot: db "Booting from %s %x",ANGLE_QUOTE_RIGHT,"%x",LF,CR,NULL
16g_szBootSectorNotFound: db "Boot sector "
17g_szNotFound: db "not found",LF,CR,NULL
18g_szReadError: db "Error %x!",LF,CR,NULL
19
20g_szAddressingModes:
21g_szLCHS: db "L-CHS",NULL
22g_szPCHS: db "P-CHS",NULL
23g_szLBA28: db "LBA28",NULL
24g_szLBA48: db "LBA48",NULL
25g_szAddressingModes_Displacement equ (g_szPCHS - g_szAddressingModes)
26;
27; Ensure that addressing modes are correctly spaced in memory
28;
29%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
30 %if g_szLCHS <> g_szAddressingModes
31 %error "g_szAddressingModes Displacement Incorrect 1"
32 %endif
33 %if g_szPCHS <> g_szLCHS + g_szAddressingModes_Displacement
34 %error "g_szAddressingModes Displacement Incorrect 2"
35 %endif
36 %if g_szLBA28 <> g_szPCHS + g_szAddressingModes_Displacement
37 %error "g_szAddressingModes Displacement Incorrect 3"
38 %endif
39 %if g_szLBA48 <> g_szLBA28 + g_szAddressingModes_Displacement
40 %error "g_szAddressingModes Displacement Incorrect 4"
41 %endif
42%endif
43
44; Boot Menu Floppy Disk strings
45;
46; The following strings are used by BootMenuPrint_RefreshInformation
47; To support optimizations in that code, these strings must start on the same 256 byte page,
48; which is checked at assembly time below.
49;
50g_szFddStart:
51g_szFddUnknown: db "Unknown",NULL
52g_szFddSizeOr: db "5",ONE_QUARTER,QUOTATION_MARK," or 3",ONE_HALF,QUOTATION_MARK," DD",NULL
53g_szFddSize: db "%s",QUOTATION_MARK,", %u kiB",NULL ; 3½", 1440 kiB
54g_szFddThreeHalf: db "3",ONE_HALF,NULL
55g_szFddEnd:
56g_szFddFiveQuarter: db "5",ONE_QUARTER,NULL
57
58%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
59 %if ((g_szFddStart-$$) & 0xff00) <> ((g_szFddEnd-$$) & 0xff00)
60 %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"
61 %endif
62%endif
63
64g_szBusTypeValues:
65g_szBusTypeValues_8Dual: db "D8 ",NULL
66g_szBusTypeValues_8Reversed: db "X8 ",NULL
67g_szBusTypeValues_8Single: db "S8 ",NULL
68g_szBusTypeValues_16: db " 16",NULL
69g_szBusTypeValues_32: db " 32",NULL
70g_szBusTypeValues_Serial: db "SER",NULL
71g_szBusTypeValues_8MemMapped: db "M8 ",NULL
72g_szBusTypeValues_Displacement equ (g_szBusTypeValues_8Reversed - g_szBusTypeValues)
73;
74; Ensure that bus type strings are correctly spaced in memory
75;
76%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
77 %if g_szBusTypeValues_8Dual <> g_szBusTypeValues
78 %error "g_szBusTypeValues Displacement Incorrect 1"
79 %endif
80 %if g_szBusTypeValues_8Reversed <> g_szBusTypeValues + g_szBusTypeValues_Displacement
81 %error "g_szBusTypeValues Displacement Incorrect 2"
82 %endif
83 %if g_szBusTypeValues_8Single <> g_szBusTypeValues_8Reversed + g_szBusTypeValues_Displacement
84 %error "g_szBusTypeValues Displacement Incorrect 3"
85 %endif
86 %if g_szBusTypeValues_16 <> g_szBusTypeValues_8Single + g_szBusTypeValues_Displacement
87 %error "g_szBusTypeValues Displacement Incorrect 4"
88 %endif
89 %if g_szBusTypeValues_32 <> g_szBusTypeValues_16 + g_szBusTypeValues_Displacement
90 %error "g_szBusTypeValues Displacement Incorrect 5"
91 %endif
92 %if g_szBusTypeValues_Serial <> g_szBusTypeValues_32 + g_szBusTypeValues_Displacement
93 %error "g_szBusTypeValues Displacement Incorrect 6"
94 %endif
95 %if g_szBusTypeValues_8MemMapped <> g_szBusTypeValues_Serial + g_szBusTypeValues_Displacement
96 %error "g_szBusTypeValues Displacement Incorrect 7"
97 %endif
98%endif
99
100g_szSelectionTimeout: db DOUBLE_BOTTOM_LEFT_CORNER,DOUBLE_LEFT_HORIZONTAL_TO_SINGLE_VERTICAL,"%ASelection in %2-u s",NULL
101
102g_szDashForZero: db "- ",NULL
103
104; Boot Menu menuitem strings
105;
106; The following strings are used by BootMenuPrint_* routines.
107; To support optimizations in that code, these strings must start on the same 256 byte page,
108; which is checked at assembly time below.
109;
110g_szBootMenuPrintStart:
111g_szDriveNum: db "%x %s",NULL
112g_szDriveNumBOOTNFO: db "%x %z",NULL
113g_szFloppyDrv: db "Floppy Drive %c",NULL
114g_szBootMenuPrintEnd:
115g_szForeignHD: db "Foreign Hard Disk",NULL
116
117%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
118 %if ((g_szBootMenuPrintStart-$$) & 0xff00) <> ((g_szBootMenuPrintEnd-$$) & 0xff00)
119 %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"
120 %endif
121%endif
122
123; Boot menu bottom of screen strings
124g_szFDD: db "FDD ",NULL
125g_szHDD: db "HDD ",NULL
126g_szRomBoot: db "ROM Boot",NULL
127g_szHotkey: db "%A%c%c%A%s%A ",NULL
128
129; Boot Menu information strings
130g_szCapacity: db "Capacity : %s",NULL
131g_szCapacityNum: db "%5-u.%u %ciB",NULL
132g_szInformation: db "%s",LF,CR
133 db "Addr.",SINGLE_VERTICAL,"Block",SINGLE_VERTICAL,"Bus",SINGLE_VERTICAL, "IRQ",SINGLE_VERTICAL,"Reset",LF,CR
134 db "%s",SINGLE_VERTICAL, "%5-u",SINGLE_VERTICAL, "%s",SINGLE_VERTICAL," %2-I",SINGLE_VERTICAL,"%5-x" ,NULL
135
136; The following strings are used by DetectPrint_StartDetectWithMasterOrSlaveStringInCXandIdeVarsInCSBP
137; To support an optimization in that code, these strings must start on the same 256 byte page,
138; which is checked at assembly time below.
139;
140g_szDetectStart:
141g_szDetectMaster: db "Master",NULL
142g_szDetectSlave: db "Slave ",NULL
143g_szDetectOuter: db "IDE %s at %s: ",NULL
144;%%; %ifdef MODULE_SERIAL ;%%; is stripped off after string compression, %ifdef won't compress properly
145g_szDetectOuterSerial: db "Serial %s on %s: ",NULL
146g_szDetectCOM: db "COM%c%s",NULL
147g_szDetectCOMAuto: db " Detect",NULL
148g_szDetectCOMSmall: db "/%u%u00",NULL ; IDE Master at COM1/9600:
149g_szDetectCOMLarge: db "/%u.%uK",NULL ; IDE Master at COM1/19.2K:
150;%%; %endif ;%%; is stripped off after string compression, %ifdef won't compress properly
151g_szDetectEnd:
152g_szDetectPort: db "%x",NULL ; IDE Master at 1F0h:
153
154%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
155 %if ((g_szDetectEnd-$$) & 0xff00) <> ((g_szDetectStart-$$) & 0xff00)
156 %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"
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.