Changeset 371 in xtideuniversalbios for trunk/BIOS_Drive_Information_Tool/Src
- Timestamp:
- Apr 5, 2012, 7:31:23 AM (13 years ago)
- google:author:
- gregli@hotmail.com
- Location:
- trunk/BIOS_Drive_Information_Tool/Src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BIOS_Drive_Information_Tool/Src/Print.asm
r359 r371 167 167 add sp, BYTE 8 168 168 169 CALL_DISPLAY_LIBRARY PrintNewlineCharacters 169 push si 170 mov si, g_szNewline 171 call Print_NullTerminatedStringFromSI 172 pop si 173 170 174 ret 171 175 -
trunk/BIOS_Drive_Information_Tool/Src/Strings.asm
r359 r371 6 6 SECTION .data 7 7 8 g_szProgramName: db "BIOS Drive Information Tool v1.0.1", LF,CR9 db "(C) 2012 by XTIDE Universal BIOS Team", LF,CR10 db "Released under GNU GPL v2", LF,CR11 db "http://code.google.com/p/xtideuniversalbios/", LF,CR,NULL8 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 12 12 13 g_szPressAnyKey: db LF,CR,"Press any key to display next drive.",LF,CR,NULL13 g_szPressAnyKey: db CR,LF,"Press any key to display next drive.",CR,LF,NULL 14 14 15 g_szHeaderDrive: db LF,CR,"-= Drive %2x =-",LF,CR,NULL15 g_szHeaderDrive: db CR,LF,"-= Drive %2x =-",CR,LF,NULL 16 16 17 g_szAtaInfoHeader: db "ATA-information from AH=25h...", LF,CR,NULL18 g_szFormatDrvName: db " Name: %s", LF,CR,NULL19 g_szFormatCHS: db " Cylinders : %5-u, Heads: %3-u, Sectors: %2-u", LF,CR,NULL17 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 20 20 g_szChsSectors: db " CHS sectors: ",NULL 21 21 g_szLBA28: db " LBA28 sectors: ",NULL 22 22 g_szLBA48: db " LBA48 sectors: ",NULL 23 23 24 g_szXTUB: db "XTIDE Universal BIOS %s generates following L-CHS...", LF,CR,NULL24 g_szXTUB: db "XTIDE Universal BIOS %s generates following L-CHS...",CR,LF,NULL 25 25 g_szXTUBversion: db ROM_VERSION_STRING ; This one is NULL terminated 26 26 27 g_szOldInfoHeader: db "Old INT 13h information from AH=08h and AH=15h...", LF,CR,NULL27 g_szOldInfoHeader: db "Old INT 13h information from AH=08h and AH=15h...",CR,LF,NULL 28 28 ; Cylinders 29 29 g_szSectors: db " Total sectors: ",NULL 30 30 31 31 32 g_szNewInfoHeader: db "EBIOS information from AH=48h...", LF,CR,NULL33 g_szNewExtensions: db " Version : %2-x, Interface bitmap: %2-x", LF,CR,NULL32 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 34 34 ; Cylinders 35 35 ; Total sectors 36 g_szNewSectorSize: db " Sector size : %u", LF,CR,NULL36 g_szNewSectorSize: db " Sector size : %u",CR,LF,NULL 37 37 38 g_szBiosError: db " BIOS returned error code %x", LF,CR,NULL38 g_szBiosError: db " BIOS returned error code %x",CR,LF,NULL 39 39 g_szDashForZero: db "- ",NULL ; Required by Assembly Library 40 41 g_szNewline: db CR,LF,NULL
Note:
See TracChangeset
for help on using the changeset viewer.