Changeset 624 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc/RomVars.inc


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/XTIDE_Universal_BIOS/Inc/RomVars.inc

    r614 r624  
    142142    .rgbSign            resb    6   ; Signature for XTIDE Configurator Program (must be even length)
    143143    .szTitle            resb    31  ; BIOS title string
    144     .szVersion          resb    25  ; BIOS version string
     144    .szVersion          resb    19  ; BIOS version string (supports up to r9999)
    145145
    146146    .wFlags             resb    2   ; Word for ROM flags
     
    154154    .bIdleTimeout       resb    1   ; Standby timer value
    155155
     156                        alignb  2   ; WORD align the IDEVARS structures
    156157    .ideVarsBegin:
    157158    .ideVars0           resb    IDEVARS_size
Note: See TracChangeset for help on using the changeset viewer.