[327] | 1 | ; Project name : BIOS Drive Information Tool
|
---|
| 2 | ; Description : Strings used in this program.
|
---|
| 3 |
|
---|
| 4 |
|
---|
| 5 | ; Section containing initialized data
|
---|
| 6 | SECTION .data
|
---|
| 7 |
|
---|
| 8 | g_szProgramName: db "BIOS Drive Information Tool v1.0.0",LF,CR
|
---|
[340] | 9 | db "Released under GNU GPL v2",LF,CR
|
---|
[327] | 10 | db "http://code.google.com/p/xtideuniversalbios/",LF,CR,NULL
|
---|
| 11 |
|
---|
| 12 | g_szPressAnyKey: db LF,CR,"Press any key to display next drive.",LF,CR,NULL
|
---|
| 13 |
|
---|
| 14 | g_szHeaderDrive: db LF,CR,"-= Drive %2x =-",LF,CR,NULL
|
---|
| 15 |
|
---|
| 16 | g_szAtaInfoHeader: db "ATA-information from AH=25h...",LF,CR,NULL
|
---|
| 17 | g_szFormatDrvName: db " Name: %s",LF,CR,NULL
|
---|
| 18 | g_szFormatCHS: db " Cylinders : %5-u, Heads: %3-u, Sectors: %2-u",LF,CR,NULL
|
---|
| 19 | g_szChsSectors: db " CHS sectors: ",NULL
|
---|
| 20 | g_szLBA28: db " LBA28 sectors: ",NULL
|
---|
| 21 | g_szLBA48: db " LBA48 sectors: ",NULL
|
---|
| 22 |
|
---|
| 23 | g_szOldInfoHeader: db "Old INT 13h information from AH=08h and AH=15h...",LF,CR,NULL
|
---|
| 24 | ; Cylinders
|
---|
| 25 | g_szSectors: db " Total sectors: ",NULL
|
---|
| 26 |
|
---|
| 27 |
|
---|
| 28 | g_szNewInfoHeader: db "EBIOS information from AH=48h...",LF,CR,NULL
|
---|
| 29 | g_szNewExtensions: db " Version : %2-x, Interface bitmap: %2-x",LF,CR,NULL
|
---|
| 30 | ; Cylinders
|
---|
| 31 | ; Total sectors
|
---|
| 32 | g_szNewSectorSize: db " Sector size : %u",LF,CR,NULL
|
---|
| 33 |
|
---|
| 34 | g_szBiosError: db " BIOS returned error code %x",LF,CR,NULL
|
---|
| 35 | g_szDashForZero: db "- ",NULL ; Required by Assembly Library
|
---|