Changeset 624 in xtideuniversalbios for trunk/BIOS_Drive_Information_Tool/Src/Strings.asm


Ignore:
Timestamp:
Oct 2, 2022, 7:30:02 PM (19 months ago)
Author:
krille_n_
Message:

Changes:

  • The BIOS version string has been changed to show the repository revision number instead of the useless "v2.0.0 beta 3+" string. In other words, the seemingly never ending beta is finally over! The version string is now updated by TortoiseSVN client side hook scripts (residing in \Tools) to be used when committing changes to the repository. It should also be possible to use these scripts with other subversion clients under Windows since they are essentially just regular batch (cmd) files!
  • The eSEG_STR macro has been changed to always disable interrupts. The workaround used for the buggy, early revisions of the 8088/8086 CPUs apparently does not work. Many thanks to Jim Leonard (Trixter) for reporting this problem!
  • Minor optimizations to the eBSF and eBSR macros.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BIOS_Drive_Information_Tool/Src/Strings.asm

    r613 r624  
    2222
    2323g_szProgramName:    db  "BIOS Drive Information Tool v1.0.3",CR,LF
    24                     db  "(C) 2012-2021 by XTIDE Universal BIOS Team",CR,LF
     24                    db  "(C) 2012-2022 by XTIDE Universal BIOS Team",CR,LF
    2525                    db  "Released under GNU GPL v2",CR,LF
    2626                    db  "http://xtideuniversalbios.org/",CR,LF,NULL
     
    3737g_szLBA:            db  "LBA   ",NULL
    3838g_szFormatCHS:      db  " Cylinders    : %5u, Heads: %3u, Sectors: %2u",NULL
    39 g_szWillBeModified: db  "Will be modified to:",CR,LF,NULL       
     39g_szWillBeModified: db  "Will be modified to:",CR,LF,NULL
    4040g_szChsSectors:     db  " CHS   sectors: ",NULL
    4141g_szLBA28:          db  " LBA28 sectors: ",NULL
     
    4444g_szPIO:            db  " PIO mode     : Max %u, Min cycle times: %u ns, with IORDY %d ns",CR,LF,NULL
    4545g_szXUB:            db  "XTIDE Universal BIOS %s generates following L-CHS...",CR,LF,NULL
    46 g_szXUBversion:     db  ROM_VERSION_STRING  ; This one is NULL terminated
     46g_szXUBversion:     db  "r"
     47                    db  ROM_VERSION_STRING
     48                    db  BUILD_DATE_STRING,NULL
    4749
    4850g_szOldInfoHeader:  db  "Old INT 13h information from AH=08h and AH=15h...",CR,LF,NULL
Note: See TracChangeset for help on using the changeset viewer.