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

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

More optimizations. Merged RamVars_IsFunction/DriveHandledByThisBIOS in with FindDPT_ForDriveNumber, since they are often used together, making a returned NULL DI pointer indicate a foreign drive in many places. Revamped the iteration done in the handlers for int13/0dh and int13h/0h. Added serial specific print string during drive detection.

File size: 7.9 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_StartDetectWithMasterOrSlaveStringInAXandIdeVarsInCSBP
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  "IDE %s at %s: ",NULL
19g_szDetectOuterSerial:  db  "Serial %s on %s: ",NULL       
20g_szDetectPort:         db  "%x",NULL                       ; IDE Master at 1F0h:
21g_szDetectCOM:          db  "COM%c%s",NULL
22g_szDetectCOMAuto:      db  " Detect",NULL
23g_szDetectCOMSmall:     db  "/%u%u00",NULL                  ; IDE Master at COM1/9600:
24g_szDetectEnd:
25g_szDetectCOMLarge:     db  "/%u.%uK",NULL                  ; IDE Master at COM1/19.2K:
26
27%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
28    %if ((g_szDetectEnd-$$) & 0xff00) <> ((g_szDetectStart-$$) & 0xff00)
29        %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"
30    %endif
31%endif
32
33; Boot Menu menuitem strings
34;
35; The following strings are used by BootMenuPrint_* routines.
36; To support optimizations in that code, these strings must start on the same 256 byte page,
37; which is checked at assembly time below.
38;
39g_szBootMenuPrintStart:
40g_szDriveNum:           db  "%x %s",NULL
41g_szDriveNumBOOTNFO:    db  "%x %z",NULL
42g_szFloppyDrv:          db  "Floppy Drive %c",NULL
43g_szBootMenuPrintEnd:
44g_szForeignHD:          db  "Foreign Hard Disk",NULL
45
46%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
47    %if ((g_szBootMenuPrintStart-$$) & 0xff00) <> ((g_szBootMenuPrintEnd-$$) & 0xff00)
48        %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"
49    %endif
50%endif
51
52; POST drive detection strings
53g_szRomAt:      db  "%s @ %x",LF,CR,NULL
54
55; Boot loader strings
56g_szTryToBoot:          db  "Booting from %s %x",ANGLE_QUOTE_RIGHT,"%x",LF,CR,NULL
57g_szBootSectorNotFound: db  "Boot sector "
58g_szNotFound:           db  "not found",LF,CR,NULL
59g_szReadError:          db  "Error %x!",LF,CR,NULL
60
61; Boot menu bottom of screen strings
62g_szFDD:        db  "FDD     ",NULL
63g_szHDD:        db  "HDD     ",NULL
64g_szRomBoot:    db  "ROM Boot",NULL
65g_szHotkey:     db  "%A%c%c%A%s%A ",NULL
66
67; Boot Menu information strings
68g_szCapacity:           db  "Capacity : %s",NULL
69g_szCapacityNum:        db  "%5-u.%u %ciB",NULL
70g_szInformation:        db  "%s",LF,CR
71    db  "Addr.",SINGLE_VERTICAL,"Block",SINGLE_VERTICAL,"Bus",SINGLE_VERTICAL,  "IRQ",SINGLE_VERTICAL,"Reset",LF,CR
72    db     "%s",SINGLE_VERTICAL, "%5-u",SINGLE_VERTICAL, "%s",SINGLE_VERTICAL," %2-I",SINGLE_VERTICAL,"%5-x" ,NULL
73
74g_szAddressingModes:
75g_szLCHS:       db  "L-CHS",NULL
76g_szPCHS:       db  "P-CHS",NULL
77g_szLBA28:      db  "LBA28",NULL
78g_szLBA48:      db  "LBA48",NULL
79g_szAddressingModes_Displacement equ (g_szPCHS - g_szAddressingModes)
80;
81; Ensure that addressing modes are correctly spaced in memory
82;
83%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
84    %if g_szLCHS <> g_szAddressingModes
85        %error "g_szAddressingModes Displacement Incorrect 1"
86    %endif
87    %if g_szPCHS <> g_szLCHS + g_szAddressingModes_Displacement
88        %error "g_szAddressingModes Displacement Incorrect 2"
89    %endif
90    %if g_szLBA28 <> g_szPCHS + g_szAddressingModes_Displacement
91        %error "g_szAddressingModes Displacement Incorrect 3"
92    %endif
93    %if g_szLBA48 <> g_szLBA28 + g_szAddressingModes_Displacement
94        %error "g_szAddressingModes Displacement Incorrect 4"
95    %endif
96%endif
97
98g_szBusTypeValues:
99g_szBusTypeValues_8Dual:        db      "D8 ",NULL
100g_szBusTypeValues_8Reversed:    db      "X8 ",NULL
101g_szBusTypeValues_8Single:      db      "S8 ",NULL
102g_szBusTypeValues_16:           db      " 16",NULL
103g_szBusTypeValues_32:           db      " 32",NULL
104g_szBusTypeValues_Serial:       db      "SER",NULL
105g_szBusTypeValues_Displacement equ (g_szBusTypeValues_8Reversed - g_szBusTypeValues)
106;
107; Ensure that bus type strings are correctly spaced in memory
108;
109%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
110    %if g_szBusTypeValues_8Dual <> g_szBusTypeValues
111        %error "g_szBusTypeValues Displacement Incorrect 1"
112    %endif
113    %if g_szBusTypeValues_8Reversed <> g_szBusTypeValues + g_szBusTypeValues_Displacement
114        %error "g_szBusTypeValues Displacement Incorrect 2"
115    %endif
116    %if g_szBusTypeValues_8Single <> g_szBusTypeValues_8Reversed + g_szBusTypeValues_Displacement
117        %error "g_szBusTypeValues Displacement Incorrect 3"
118    %endif
119    %if g_szBusTypeValues_16 <> g_szBusTypeValues_8Single + g_szBusTypeValues_Displacement
120        %error "g_szBusTypeValues Displacement Incorrect 4"
121    %endif
122    %if g_szBusTypeValues_32 <> g_szBusTypeValues_16 + g_szBusTypeValues_Displacement
123        %error "g_szBusTypeValues Displacement Incorrect 5"
124    %endif
125    %if g_szBusTypeValues_Serial <> g_szBusTypeValues_32 + g_szBusTypeValues_Displacement
126        %error "g_szBusTypeValues Displacement Incorrect 6"
127    %endif
128%endif
129
130g_szSelectionTimeout:   db      DOUBLE_BOTTOM_LEFT_CORNER,DOUBLE_LEFT_HORIZONTAL_TO_SINGLE_VERTICAL,"%ASelection in %2-u s",NULL
131
132g_szDashForZero:        db      "- ",NULL
133
134; Boot Menu Floppy Disk strings
135;
136; The following strings are used by BootMenuPrint_RefreshInformation
137; To support optimizations in that code, these strings must start on the same 256 byte page,
138; which is checked at assembly time below.
139;
140g_szFddStart:
141g_szFddUnknown: db  "Unknown",NULL
142g_szFddSizeOr:  db  "5",ONE_QUARTER,QUOTATION_MARK," or 3",ONE_HALF,QUOTATION_MARK," DD",NULL
143g_szFddSize:    db  "%s",QUOTATION_MARK,", %u kiB",NULL ; 3½", 1440 kiB
144g_szFddThreeHalf:       db  "3",ONE_HALF,NULL
145g_szFddEnd:
146g_szFddFiveQuarter:     db  "5",ONE_QUARTER,NULL
147
148%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
149    %if ((g_szFddStart-$$) & 0xff00) <> ((g_szFddEnd-$$) & 0xff00)
150        %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"
151    %endif
152%endif
153
154;------------------------------------------------------------------------------------------
155;
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;
169;$translate{ord('1')} = 11;
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
178;$translate{ord('0')} = 20;
179;
180; Formats begin immediately after the last Translated character (they are in the same table)
181;
182;$format_begin = 21;
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
193;$format{"s"}   = 30;        # n/a, normal string from DS
194;$format{"z"}   = 31;        # n/a, boot string from BDA
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
199; letters.  If lower case 'z' is not used, 0x3a can be a good choice as it adds ':' to the
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.