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

Last change on this file since 290 was 285, checked in by aitotat@…, 12 years ago

Changes to XTIDE Universal BIOS:

  • Some minor optimizations.
  • Boot menu now displays JR-IDE/ISA bus type (M8).
  • Drive detection now displays ROM segment as JR-IDE/ISA Device address.
File size: 8.3 KB
RevLine 
[88]1; Project name : XTIDE Universal BIOS
[3]2; Description : Strings and equates for BIOS messages.
3
[186]4%ifdef MODULE_STRINGS_COMPRESSED_PRECOMPRESS
[242]5 %include "Display.inc"
[186]6%endif
7
[3]8; Section containing code
9SECTION .text
10
[241]11; POST drive detection strings
12g_szRomAt: db "%s @ %x",LF,CR,NULL
[242]13
[3]14; Boot loader strings
[143]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
[3]19
[242]20g_szAddressingModes:
[88]21g_szLCHS: db "L-CHS",NULL
22g_szPCHS: db "P-CHS",NULL
23g_szLBA28: db "LBA28",NULL
24g_szLBA48: db "LBA48",NULL
[185]25g_szAddressingModes_Displacement equ (g_szPCHS - g_szAddressingModes)
26;
27; Ensure that addressing modes are correctly spaced in memory
28;
[242]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
[185]42%endif
[242]43
44g_szBusTypeValues:
[182]45g_szBusTypeValues_8Dual: db "D8 ",NULL
46g_szBusTypeValues_8Reversed: db "X8 ",NULL
47g_szBusTypeValues_8Single: db "S8 ",NULL
48g_szBusTypeValues_16: db " 16",NULL
49g_szBusTypeValues_32: db " 32",NULL
50g_szBusTypeValues_Serial: db "SER",NULL
[285]51g_szBusTypeValues_8MemMapped: db "M8 ",NULL
[185]52g_szBusTypeValues_Displacement equ (g_szBusTypeValues_8Reversed - g_szBusTypeValues)
53;
54; Ensure that bus type strings are correctly spaced in memory
55;
[242]56%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
57 %if g_szBusTypeValues_8Dual <> g_szBusTypeValues
58 %error "g_szBusTypeValues Displacement Incorrect 1"
59 %endif
60 %if g_szBusTypeValues_8Reversed <> g_szBusTypeValues + g_szBusTypeValues_Displacement
61 %error "g_szBusTypeValues Displacement Incorrect 2"
62 %endif
63 %if g_szBusTypeValues_8Single <> g_szBusTypeValues_8Reversed + g_szBusTypeValues_Displacement
64 %error "g_szBusTypeValues Displacement Incorrect 3"
65 %endif
66 %if g_szBusTypeValues_16 <> g_szBusTypeValues_8Single + g_szBusTypeValues_Displacement
67 %error "g_szBusTypeValues Displacement Incorrect 4"
68 %endif
69 %if g_szBusTypeValues_32 <> g_szBusTypeValues_16 + g_szBusTypeValues_Displacement
70 %error "g_szBusTypeValues Displacement Incorrect 5"
71 %endif
72 %if g_szBusTypeValues_Serial <> g_szBusTypeValues_32 + g_szBusTypeValues_Displacement
73 %error "g_szBusTypeValues Displacement Incorrect 6"
74 %endif
[285]75 %if g_szBusTypeValues_8MemMapped <> g_szBusTypeValues_Serial + g_szBusTypeValues_Displacement
76 %error "g_szBusTypeValues Displacement Incorrect 7"
77 %endif
[185]78%endif
[242]79
[186]80g_szSelectionTimeout: db DOUBLE_BOTTOM_LEFT_CORNER,DOUBLE_LEFT_HORIZONTAL_TO_SINGLE_VERTICAL,"%ASelection in %2-u s",NULL
[182]81
[184]82g_szDashForZero: db "- ",NULL
[197]83
[262]84; Boot Menu Floppy Disk strings
85;
86; The following strings are used by BootMenuPrint_RefreshInformation
87; To support optimizations in that code, these strings must start on the same 256 byte page,
88; which is checked at assembly time below.
89;
90g_szFddStart:
91g_szFddUnknown: db "Unknown",NULL
92g_szFddSizeOr: db "5",ONE_QUARTER,QUOTATION_MARK," or 3",ONE_HALF,QUOTATION_MARK," DD",NULL
93g_szFddSize: db "%s",QUOTATION_MARK,", %u kiB",NULL ; 3½", 1440 kiB
94g_szFddThreeHalf: db "3",ONE_HALF,NULL
95g_szFddEnd:
96g_szFddFiveQuarter: db "5",ONE_QUARTER,NULL
[197]97
[262]98%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
99 %if ((g_szFddStart-$$) & 0xff00) <> ((g_szFddEnd-$$) & 0xff00)
100 %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"
101 %endif
102%endif
103
[277]104; The following strings are used by DetectPrint_StartDetectWithMasterOrSlaveStringInAXandIdeVarsInCSBP
105; To support an optimization in that code, these strings must start on the same 256 byte page,
106; which is checked at assembly time below.
107;
108g_szDetectStart:
109g_szDetectMaster: db "Master",NULL
110g_szDetectSlave: db "Slave ",NULL
111g_szDetectOuter: db "IDE %s at %s: ",NULL
112;%%; %ifdef MODULE_SERIAL ;%%; is stripped off after string compression, %ifdef won't compress properly
113g_szDetectOuterSerial: db "Serial %s on %s: ",NULL
114g_szDetectCOM: db "COM%c%s",NULL
115g_szDetectCOMAuto: db " Detect",NULL
116g_szDetectCOMSmall: db "/%u%u00",NULL ; IDE Master at COM1/9600:
117g_szDetectCOMLarge: db "/%u.%uK",NULL ; IDE Master at COM1/19.2K:
118;%%; %endif ;%%; is stripped off after string compression, %ifdef won't compress properly
119g_szDetectEnd:
120g_szDetectPort: db "%x",NULL ; IDE Master at 1F0h:
121
122%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
123 %if ((g_szDetectEnd-$$) & 0xff00) <> ((g_szDetectStart-$$) & 0xff00)
124 %error "g_szDetect* strings must start on the same 256 byte page, required by DetectPrint_StartDetectWithMasterOrSlaveStringInAXandIdeVarsInCSBP. Please move this block up or down within strings.asm"
125 %endif
126%endif
127
128; Boot Menu menuitem strings
129;
130; The following strings are used by BootMenuPrint_* routines.
131; To support optimizations in that code, these strings must start on the same 256 byte page,
132; which is checked at assembly time below.
133;
134g_szBootMenuPrintStart:
135g_szDriveNum: db "%x %s",NULL
136g_szDriveNumBOOTNFO: db "%x %z",NULL
137g_szFloppyDrv: db "Floppy Drive %c",NULL
138g_szBootMenuPrintEnd:
139g_szForeignHD: db "Foreign Hard Disk",NULL
140
141%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
142 %if ((g_szBootMenuPrintStart-$$) & 0xff00) <> ((g_szBootMenuPrintEnd-$$) & 0xff00)
143 %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"
144 %endif
145%endif
146
147; Boot menu bottom of screen strings
148g_szFDD: db "FDD ",NULL
149g_szHDD: db "HDD ",NULL
150g_szRomBoot: db "ROM Boot",NULL
151g_szHotkey: db "%A%c%c%A%s%A ",NULL
152
153; Boot Menu information strings
154g_szCapacity: db "Capacity : %s",NULL
155g_szCapacityNum: db "%5-u.%u %ciB",NULL
156g_szInformation: db "%s",LF,CR
157 db "Addr.",SINGLE_VERTICAL,"Block",SINGLE_VERTICAL,"Bus",SINGLE_VERTICAL, "IRQ",SINGLE_VERTICAL,"Reset",LF,CR
158 db "%s",SINGLE_VERTICAL, "%5-u",SINGLE_VERTICAL, "%s",SINGLE_VERTICAL," %2-I",SINGLE_VERTICAL,"%5-x" ,NULL
159
[197]160;------------------------------------------------------------------------------------------
[242]161;
[197]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;
[242]175;$translate{ord('1')} = 11;
[197]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
[241]184;$translate{ord('0')} = 20;
[197]185;
186; Formats begin immediately after the last Translated character (they are in the same table)
187;
[233]188;$format_begin = 21;
[197]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
[241]199;$format{"s"} = 30; # n/a, normal string from DS
200;$format{"z"} = 31; # n/a, boot string from BDA
[197]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
[242]205; letters. If lower case 'z' is not used, 0x3a can be a good choice as it adds ':' to the
[197]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.