Changeset 547 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Menus/HotkeyBar.asm


Ignore:
Timestamp:
Apr 21, 2013, 3:47:11 PM (11 years ago)
Author:
aitotat@…
google:author:
aitotat@gmail.com
Message:

Changes to XTIDE Universal BIOS:

  • Hotkeys were incorrectly initialized to use 'C' as first hard drive letter.
  • All CHS translate modes should again work (incorrectly decremented DX instead of DL, it might or might not have caused problems).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/Menus/HotkeyBar.asm

    r528 r547  
    9090;       AX, CX, DX, SI, DI
    9191;--------------------------------------------------------------------
    92     call    DriveXlate_GetLetterForFirstHardDriveToAX
     92    call    BootVars_GetLetterForFirstHardDriveToAX
    9393    mov     ah, ANGLE_QUOTE_RIGHT
    9494    mov     cl, [es:BOOTVARS.hotkeyVars+HOTKEYVARS.bHddLetter]
     
    397397    ; Determine if Floppy or Hard Drive hotkey
    398398    xchg    cx, ax
    399     call    DriveXlate_GetLetterForFirstHardDriveToAX
     399    call    BootVars_GetLetterForFirstHardDriveToAX
    400400    cmp     cl, al
    401401    jb      SHORT .StoreDriveLetter ; Store Floppy Drive letter
Note: See TracChangeset for help on using the changeset viewer.