Changeset 524 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc/BootVars.inc


Ignore:
Timestamp:
Mar 14, 2013, 2:28:30 PM (11 years ago)
Author:
aitotat@…
google:author:
aitotat@gmail.com
Message:

Changes to XTIDE Universal BIOS:

  • Min time to display hotkeys finally work correctly.
  • AT builds do not copy existing INT 13h handler to 40h by default, XT builds do.
  • Interrupts are enabled for Primary and Secondary controller by default on AT builds.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Inc/BootVars.inc

    r520 r524  
    4444    .wNextXTCFportToScan    resb    2   ; Needed for XT-CF port autodetection
    4545%endif
    46 
    47    
    4846%ifdef MODULE_HOTKEYS
    4947    .hotkeyVars             resb    HOTKEYVARS_size
    50 %else
    51     .clearToZeroFromThisPoint:
    5248%endif
    53 
    5449    .rgDrvDetectInfo:                   ; Array containing DRVDETECTINFO structs
    5550endstruc
     
    5954
    6055struc HOTKEYVARS
    61     .wTimeToClose       resb    2       ; Earliest system time when Hotkey Bar can be closed
    62 .clearToZeroFromThisPoint:
     56    .wTimeWhenDisplayed resb    2       ; System time (ticks) when Hotkey bar was first displayed
    6357    .wFddAndHddLetters:
    6458    .bFddLetter         resb    1       ; Floppy Drive letter hotkey (upper case)
     
    7468%endif
    7569
    76 ; Bit defines for KEYBOARDVARS.bFlags
    77 FLG_HOTKEY_HD_FIRST     EQU     (1<<0)  ; First try to boot from HDD, then FDD
     70; Bit defines for HOTKEYVARS.bFlags
     71FLG_HOTKEY_HD_FIRST         EQU     (1<<0)  ; First try to boot from HDD, then FDD
    7872
    7973%endif ; MODULE_HOTKEYS
Note: See TracChangeset for help on using the changeset viewer.