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

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

Added printing of COM port and baud rate, when set explicitly by idecfg. Although it eats some bytes, I think it is worth it, since the BIOS will be looking for a server on a particular com port and baud rate, and it could be hard to troubleshoot a mismatch without this information. However, if we become space crunched, this change can be backed out.

File size: 4.2 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
5%include "Display.inc"
6%endif
7
[3]8; Section containing code
9SECTION .text
10
11; POST drive detection strings
[127]12g_szRomAt:      db  "%s @ %x",LF,CR,NULL
[3]13
[196]14g_szMaster:             db  "IDE Master at ",NULL 
15g_szSlave:              db  "IDE Slave  at ",NULL
16g_szDetect:             db  "%s%x: ",NULL                      ; IDE Master at 1F0h:
17g_szDetectCOM:          db  "%sCOM%c/%u%c: ",NULL              ; IDE Master at COM1/115K:       
18g_szDetectCOMAuto:      db  "%sCOM Detect: ",NULL              ; IDE Master at COM Detect:
19               
[3]20; Boot loader strings
[143]21g_szTryToBoot:          db  "Booting from %s %x",ANGLE_QUOTE_RIGHT,"%x",LF,CR,NULL
22g_szBootSectorNotFound: db  "Boot sector "
23g_szNotFound:           db  "not found",LF,CR,NULL
24g_szReadError:          db  "Error %x!",LF,CR,NULL
[3]25
26; Boot menu bottom of screen strings
[186]27g_szFDD:        db  "FDD     ",NULL
28g_szHDD:        db  "HDD     ",NULL
[92]29g_szRomBoot:    db  "ROM Boot",NULL
[186]30g_szHotkey:     db  "%A%c%c%A%s%A ",NULL
[3]31
[92]32
[3]33; Boot Menu menuitem strings
[135]34g_szDriveNum:   db  "%x ",NULL
[88]35g_szFDLetter:   db  "%s %c",NULL
[95]36g_szFloppyDrv:  db  "Floppy Drive",NULL
[88]37g_szforeignHD:  db  "Foreign Hard Disk",NULL
[3]38
39; Boot Menu information strings
[88]40g_szCapacity:   db  "Capacity : ",NULL
41g_szSizeSingle: db  "%s%u.%u %ciB",NULL
[186]42g_szSizeDual:   db  "%s%5-u.%u %ciB /%5-u.%u %ciB",LF,CR,NULL
[127]43g_szCfgHeader:  db  "Addr.",SINGLE_VERTICAL,"Block",SINGLE_VERTICAL,"Bus",  SINGLE_VERTICAL,"IRQ",  SINGLE_VERTICAL,"Reset",LF,CR,NULL
[184]44g_szCfgFormat:  db  "%s"   ,SINGLE_VERTICAL,"%5-u", SINGLE_VERTICAL,"%s",SINGLE_VERTICAL," %2-I",SINGLE_VERTICAL,"%5-x",  NULL
[182]45       
46g_szAddressingModes:                   
[88]47g_szLCHS:       db  "L-CHS",NULL
48g_szPCHS:       db  "P-CHS",NULL
49g_szLBA28:      db  "LBA28",NULL
50g_szLBA48:      db  "LBA48",NULL
[185]51g_szAddressingModes_Displacement equ (g_szPCHS - g_szAddressingModes)
52;
53; Ensure that addressing modes are correctly spaced in memory
54;
[194]55%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS       
[185]56%if g_szLCHS <> g_szAddressingModes
57%error "g_szAddressingModes Displacement Incorrect 1"
58%endif
59%if g_szPCHS <> g_szLCHS + g_szAddressingModes_Displacement
60%error "g_szAddressingModes Displacement Incorrect 2"
61%endif
62%if g_szLBA28 <> g_szPCHS + g_szAddressingModes_Displacement       
63%error "g_szAddressingModes Displacement Incorrect 3"
64%endif
65%if g_szLBA48 <> g_szLBA28 + g_szAddressingModes_Displacement       
66%error "g_szAddressingModes Displacement Incorrect 4"
[194]67%endif
68%endif     
[182]69       
[88]70g_szFddUnknown: db  "%sUnknown",NULL
[92]71g_szFddSizeOr:  db  "%s5",ONE_QUARTER,QUOTATION_MARK," or 3",ONE_HALF,QUOTATION_MARK," DD",NULL
[182]72g_szFddSize:    db  "%s%s",QUOTATION_MARK,", %u kiB",NULL   ; 3½", 1440 kiB
73
74g_szFddThreeHalf:       db  "3",ONE_HALF,NULL
75g_szFddFiveQuarter:     db  "5",ONE_QUARTER,NULL       
[185]76g_szFddThreeFive_Displacement equ (g_szFddFiveQuarter - g_szFddThreeHalf)
[182]77
78g_szBusTypeValues:     
79g_szBusTypeValues_8Dual:        db      "D8 ",NULL
80g_szBusTypeValues_8Reversed:    db      "X8 ",NULL
81g_szBusTypeValues_8Single:      db      "S8 ",NULL
82g_szBusTypeValues_16:           db      " 16",NULL
83g_szBusTypeValues_32:           db      " 32",NULL
84g_szBusTypeValues_Serial:       db      "SER",NULL
[185]85g_szBusTypeValues_Displacement equ (g_szBusTypeValues_8Reversed - g_szBusTypeValues)
86;
87; Ensure that bus type strings are correctly spaced in memory
88;
[194]89%ifndef CHECK_FOR_UNUSED_ENTRYPOINTS               
[185]90%if g_szBusTypeValues_8Dual <> g_szBusTypeValues
91%error "g_szBusTypeValues Displacement Incorrect 1"
92%endif
93%if g_szBusTypeValues_8Reversed <> g_szBusTypeValues + g_szBusTypeValues_Displacement
94%error "g_szBusTypeValues Displacement Incorrect 2"     
95%endif
96%if g_szBusTypeValues_8Single <> g_szBusTypeValues_8Reversed + g_szBusTypeValues_Displacement
97%error "g_szBusTypeValues Displacement Incorrect 3"             
98%endif
99%if g_szBusTypeValues_16 <> g_szBusTypeValues_8Single + g_szBusTypeValues_Displacement     
100%error "g_szBusTypeValues Displacement Incorrect 4"             
101%endif
102%if g_szBusTypeValues_32 <> g_szBusTypeValues_16 + g_szBusTypeValues_Displacement
103%error "g_szBusTypeValues Displacement Incorrect 5"             
104%endif
105%if g_szBusTypeValues_Serial <> g_szBusTypeValues_32 + g_szBusTypeValues_Displacement
106%error "g_szBusTypeValues Displacement Incorrect 6"             
[194]107%endif
108%endif
[182]109       
[186]110g_szSelectionTimeout:   db      DOUBLE_BOTTOM_LEFT_CORNER,DOUBLE_LEFT_HORIZONTAL_TO_SINGLE_VERTICAL,"%ASelection in %2-u s",NULL
[182]111
[184]112g_szDashForZero:        db      "- ",NULL
Note: See TracBrowser for help on using the repository browser.