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

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

Changes to XTIDE Universal BIOS:

  • Commented out the FS and GS segment registers from INTPACK since we never touch them anyway.
  • Minor changes to improve speed in the Int13h handler.
  • Changed Prepare_ByValidatingSectorsInALforOldInt13h so it really doesn't corrupt anything.
  • Changed the makefile so 'make strings' now works even if StringsCompressed.asm is missing or empty.
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
[322]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
[292]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
[294]64; The following strings are used by DetectPrint_StartDetectWithMasterOrSlaveStringInCXandIdeVarsInCSBP
[292]65; To support an optimization in that code, these strings must start on the same 256 byte page,
66; which is checked at assembly time below.
67;
68g_szDetectStart:
69g_szDetectMaster:       db  "Master",NULL
70g_szDetectSlave:        db  "Slave ",NULL
71g_szDetectOuter:        db  "IDE %s at %s: ",NULL
72;%%; %ifdef MODULE_SERIAL       ;%%; is stripped off after string compression, %ifdef won't compress properly
73g_szDetectOuterSerial:  db  "Serial %s on %s: ",NULL
74g_szDetectCOM:          db  "COM%c%s",NULL
75g_szDetectCOMAuto:      db  " Detect",NULL
76g_szDetectCOMSmall:     db  "/%u%u00",NULL                  ; IDE Master at COM1/9600:
77g_szDetectCOMLarge:     db  "/%u.%uK",NULL                  ; IDE Master at COM1/19.2K:
78;%%; %endif                     ;%%; is stripped off after string compression, %ifdef won't compress properly
79g_szDetectEnd:
80g_szDetectPort:         db  "%x",NULL                       ; IDE Master at 1F0h:
81
82%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
83    %if ((g_szDetectEnd-$$) & 0xff00) <> ((g_szDetectStart-$$) & 0xff00)
[294]84        %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"
[292]85    %endif
86%endif
87
[242]88g_szBusTypeValues:
[182]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
[285]95g_szBusTypeValues_8MemMapped:   db      "M8 ",NULL
[185]96g_szBusTypeValues_Displacement equ (g_szBusTypeValues_8Reversed - g_szBusTypeValues)
97;
98; Ensure that bus type strings are correctly spaced in memory
99;
[242]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
[285]119    %if g_szBusTypeValues_8MemMapped <> g_szBusTypeValues_Serial + g_szBusTypeValues_Displacement
120        %error "g_szBusTypeValues Displacement Incorrect 7"
121    %endif
[185]122%endif
[242]123
[322]124; Boot Menu menuitem strings
125;
126; The following strings are used by BootMenuPrint_* routines.
127; To support optimizations in that code, these strings must start on the same 256 byte page,
128; which is checked at assembly time below.
129;
130g_szBootMenuPrintStart:
131g_szDriveNum:           db  "%x %s",NULL
132g_szDriveNumBOOTNFO:    db  "%x %z",NULL
133g_szFloppyDrv:          db  "Floppy Drive %c",NULL
134g_szBootMenuPrintEnd:
135g_szForeignHD:          db  "Foreign Hard Disk",NULL
136
137%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS
138    %if ((g_szBootMenuPrintStart-$$) & 0xff00) <> ((g_szBootMenuPrintEnd-$$) & 0xff00)
139        %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"
140    %endif
141%endif
142
[186]143g_szSelectionTimeout:   db      DOUBLE_BOTTOM_LEFT_CORNER,DOUBLE_LEFT_HORIZONTAL_TO_SINGLE_VERTICAL,"%ASelection in %2-u s",NULL
[182]144
[184]145g_szDashForZero:        db      "- ",NULL
[197]146
[277]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.