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

Last change on this file since 256 was 252, checked in by aitotat@…, 13 years ago

Changes to XTIDE Universal BIOS:

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