Changeset 262 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Strings.asm
- Timestamp:
- Feb 24, 2012, 10:28:31 AM (13 years ago)
- google:author:
- gregli@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Strings.asm
r252 r262 17 17 g_szDetectSlave: db "Slave ",NULL 18 18 g_szDetectOuter: db "IDE %s at %s: ",NULL 19 g_szDetectOuterSerial: db "Serial %s on %s: ",NULL 19 20 g_szDetectPort: db "%x",NULL ; IDE Master at 1F0h: 20 21 g_szDetectCOM: db "COM%c%s",NULL 21 g_szDetectCOMAuto: db " Auto",NULL22 g_szDetectCOMAuto: db " Detect",NULL 22 23 g_szDetectCOMSmall: db "/%u%u00",NULL ; IDE Master at COM1/9600: 23 24 g_szDetectEnd: … … 70 71 db "Addr.",SINGLE_VERTICAL,"Block",SINGLE_VERTICAL,"Bus",SINGLE_VERTICAL, "IRQ",SINGLE_VERTICAL,"Reset",LF,CR 71 72 db "%s",SINGLE_VERTICAL, "%5-u",SINGLE_VERTICAL, "%s",SINGLE_VERTICAL," %2-I",SINGLE_VERTICAL,"%5-x" ,NULL 72 73 ; Boot Menu Floppy Disk strings74 ;75 ; The following strings are used by BootMenuPrint_RefreshInformation76 ; To support optimizations in that code, these strings must start on the same 256 byte page,77 ; which is checked at assembly time below.78 ;79 g_szFddStart:80 g_szFddUnknown: db "Unknown",NULL81 g_szFddSizeOr: db "5",ONE_QUARTER,QUOTATION_MARK," or 3",ONE_HALF,QUOTATION_MARK," DD",NULL82 g_szFddSize: db "%s",QUOTATION_MARK,", %u kiB",NULL ; 3½", 1440 kiB83 g_szFddThreeHalf: db "3",ONE_HALF,NULL84 g_szFddEnd:85 g_szFddFiveQuarter: db "5",ONE_QUARTER,NULL86 87 %ifndef CHECK_FOR_UNUSED_ENTRYPOINTS88 %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 %endif91 %endif92 73 93 74 g_szAddressingModes: … … 151 132 g_szDashForZero: db "- ",NULL 152 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 ; 140 g_szFddStart: 141 g_szFddUnknown: db "Unknown",NULL 142 g_szFddSizeOr: db "5",ONE_QUARTER,QUOTATION_MARK," or 3",ONE_HALF,QUOTATION_MARK," DD",NULL 143 g_szFddSize: db "%s",QUOTATION_MARK,", %u kiB",NULL ; 3½", 1440 kiB 144 g_szFddThreeHalf: db "3",ONE_HALF,NULL 145 g_szFddEnd: 146 g_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 153 154 154 ;------------------------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.