[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 |
|
---|
[371] | 8 | g_szProgramName: db "BIOS Drive Information Tool v1.0.1",CR,LF
|
---|
| 9 | db "(C) 2012 by XTIDE Universal BIOS Team",CR,LF
|
---|
| 10 | db "Released under GNU GPL v2",CR,LF
|
---|
| 11 | db "http://code.google.com/p/xtideuniversalbios/",CR,LF,NULL
|
---|
[327] | 12 |
|
---|
[371] | 13 | g_szPressAnyKey: db CR,LF,"Press any key to display next drive.",CR,LF,NULL
|
---|
[327] | 14 |
|
---|
[371] | 15 | g_szHeaderDrive: db CR,LF,"-= Drive %2x =-",CR,LF,NULL
|
---|
[327] | 16 |
|
---|
[371] | 17 | g_szAtaInfoHeader: db "ATA-information from AH=25h...",CR,LF,NULL
|
---|
| 18 | g_szFormatDrvName: db " Name: %s",CR,LF,NULL
|
---|
| 19 | g_szFormatCHS: db " Cylinders : %5-u, Heads: %3-u, Sectors: %2-u",CR,LF,NULL
|
---|
[327] | 20 | g_szChsSectors: db " CHS sectors: ",NULL
|
---|
| 21 | g_szLBA28: db " LBA28 sectors: ",NULL
|
---|
| 22 | g_szLBA48: db " LBA48 sectors: ",NULL
|
---|
| 23 |
|
---|
[371] | 24 | g_szXTUB: db "XTIDE Universal BIOS %s generates following L-CHS...",CR,LF,NULL
|
---|
[359] | 25 | g_szXTUBversion: db ROM_VERSION_STRING ; This one is NULL terminated
|
---|
| 26 |
|
---|
[371] | 27 | g_szOldInfoHeader: db "Old INT 13h information from AH=08h and AH=15h...",CR,LF,NULL
|
---|
[327] | 28 | ; Cylinders
|
---|
| 29 | g_szSectors: db " Total sectors: ",NULL
|
---|
| 30 |
|
---|
| 31 |
|
---|
[371] | 32 | g_szNewInfoHeader: db "EBIOS information from AH=48h...",CR,LF,NULL
|
---|
| 33 | g_szNewExtensions: db " Version : %2-x, Interface bitmap: %2-x",CR,LF,NULL
|
---|
[327] | 34 | ; Cylinders
|
---|
| 35 | ; Total sectors
|
---|
[371] | 36 | g_szNewSectorSize: db " Sector size : %u",CR,LF,NULL
|
---|
[327] | 37 |
|
---|
[371] | 38 | g_szBiosError: db " BIOS returned error code %x",CR,LF,NULL
|
---|
[327] | 39 | g_szDashForZero: db "- ",NULL ; Required by Assembly Library
|
---|
[371] | 40 |
|
---|
| 41 | g_szNewline: db CR,LF,NULL
|
---|