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

Last change on this file since 3 was 3, checked in by aitotat, 14 years ago
File size: 1.8 KB
Line 
1; File name     :   Strings.asm
2; Project name  :   IDE BIOS
3; Created date  :   4.12.2007
4; Last update   :   9.4.2010
5; Author        :   Tomi Tilli
6; Description   :   Strings and equates for BIOS messages.
7
8; Section containing code
9SECTION .text
10
11; POST drive detection strings
12g_szRomAt:      db  "%s @ %x",CR,LF,STOP
13g_szMaster:     db  "Master",STOP
14g_szSlave:      db  "Slave ",STOP
15g_szDetect:     db  "IDE %s at %x: ",STOP           ; IDE Master at 1F0h:
16g_szNotFound:   db  "not found",CR,LF,STOP
17
18; Boot loader strings
19g_szFloppyDrv:  db  "Floppy Drive",STOP
20g_szHardDrv:    db  " Hard Drive ",STOP
21g_szTryToBoot:  db  "Booting from %s %x",175,"%x ... ",STOP
22g_szBootSector: db  "Boot Sector",STOP
23g_szFound:      db  "found",STOP
24g_szSectRead:   db  "%s %s!",CR,LF,STOP
25g_szReadError:  db  "Error %x!",CR,LF,STOP
26g_sz18hCallback:db  "Boot menu callback via INT 18h",STOP
27
28; Boot menu bottom of screen strings
29g_szFDD:        db  "FDD",STOP
30g_szHDD:        db  "HDD",STOP
31g_szBottomScrn: db  "%c to %c boots from %s with %s mappings",CR,LF,STOP
32
33; Boot Menu title strings
34g_szTitleLn3:   db  "Copyright 2009-2010 by Tomi Tilli",STOP
35
36; Boot Menu menuitem strings
37g_szFDLetter:   db  "%s %c",STOP
38g_szforeignHD:  db  "Foreign Hard Disk",STOP
39g_szRomBoot:    db  "ROM Boot",STOP
40
41; Boot Menu information strings
42g_szCapacity:   db  "Capacity : ",STOP
43g_szSizeSingle: db  "%s%u.%u %ciB",STOP
44g_szSizeDual:   db  "%s%u.%u %ciB / %u.%u %ciB",STOP
45g_szCfgHeader:  db  "Addr.", T_V, "Block", T_V, "Bus",   T_V, "IRQ",   T_V, "Reset", STOP
46g_szCfgFormat:  db  "%s"   , T_V, "%5u",   T_V, "%c%2u", T_V, " %c%c", T_V, "%5x",   STOP
47g_szLCHS:       db  "L-CHS",STOP
48g_szPCHS:       db  "P-CHS",STOP
49g_szLBA28:      db  "LBA28",STOP
50g_szLBA48:      db  "LBA48",STOP
51g_szFddUnknown: db  "%sUnknown",STOP
52g_szFddSizeOr:  db  "%s5",172,22h," or 3",171,22h," DD",STOP
53g_szFddSize:    db  "%s%c%c",22h,", %u kiB",STOP    ; 3½", 1440 kiB
Note: See TracBrowser for help on using the repository browser.