source: xtideuniversalbios/trunk/BIOS_Drive_Information_Tool/Src/Strings.asm@ 362

Last change on this file since 362 was 359, checked in by aitotat@…, 13 years ago

Changes to BIOS Drive Information Tool:

  • L-CHS variables generated by XTIDE Universal BIOS are now displayed.
File size: 1.5 KB
Line 
1; Project name : BIOS Drive Information Tool
2; Description : Strings used in this program.
3
4
5; Section containing initialized data
6SECTION .data
7
8g_szProgramName: db "BIOS Drive Information Tool v1.0.1",LF,CR
9 db "(C) 2012 by XTIDE Universal BIOS Team",LF,CR
10 db "Released under GNU GPL v2",LF,CR
11 db "http://code.google.com/p/xtideuniversalbios/",LF,CR,NULL
12
13g_szPressAnyKey: db LF,CR,"Press any key to display next drive.",LF,CR,NULL
14
15g_szHeaderDrive: db LF,CR,"-= Drive %2x =-",LF,CR,NULL
16
17g_szAtaInfoHeader: db "ATA-information from AH=25h...",LF,CR,NULL
18g_szFormatDrvName: db " Name: %s",LF,CR,NULL
19g_szFormatCHS: db " Cylinders : %5-u, Heads: %3-u, Sectors: %2-u",LF,CR,NULL
20g_szChsSectors: db " CHS sectors: ",NULL
21g_szLBA28: db " LBA28 sectors: ",NULL
22g_szLBA48: db " LBA48 sectors: ",NULL
23
24g_szXTUB: db "XTIDE Universal BIOS %s generates following L-CHS...",LF,CR,NULL
25g_szXTUBversion: db ROM_VERSION_STRING ; This one is NULL terminated
26
27g_szOldInfoHeader: db "Old INT 13h information from AH=08h and AH=15h...",LF,CR,NULL
28 ; Cylinders
29g_szSectors: db " Total sectors: ",NULL
30
31
32g_szNewInfoHeader: db "EBIOS information from AH=48h...",LF,CR,NULL
33g_szNewExtensions: db " Version : %2-x, Interface bitmap: %2-x",LF,CR,NULL
34 ; Cylinders
35 ; Total sectors
36g_szNewSectorSize: db " Sector size : %u",LF,CR,NULL
37
38g_szBiosError: db " BIOS returned error code %x",LF,CR,NULL
39g_szDashForZero: db "- ",NULL ; Required by Assembly Library
Note: See TracBrowser for help on using the repository browser.