Changeset 599 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Initialization


Ignore:
Timestamp:
Jul 14, 2018, 1:21:16 PM (6 years ago)
Author:
aitotat
Message:

Hotkey bar is now updated and drawn from system timer tick handler 1Ch. This gives much more responsive key input and makes possible to implement some simple detection animation to show that system has not frozen.

Location:
trunk/XTIDE_Universal_BIOS/Src/Initialization
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/Initialization/DetectDrives.asm

    r598 r599  
    224224StartDetectionWithDriveSelectByteInBHandStringInCX:
    225225    call    DetectPrint_StartDetectWithMasterOrSlaveStringInCXandIdeVarsInCSBP
    226 
    227 %ifdef MODULE_HOTKEYS
    228     call    HotkeyBar_UpdateDuringDriveDetection
    229 %endif
    230226    ; Fall to .ReadAtaInfoFromHardDisk
    231227
  • trunk/XTIDE_Universal_BIOS/Src/Initialization/Interrupts.asm

    r596 r599  
    184184    mul     bl
    185185    xchg    ax, bx
     186    cli
    186187    mov     [es:bx], si             ; Store offset
    187188    mov     [es:bx+2], cs           ; Store segment
     189    sti
    188190.Interrupts_Return:
    189191    ret
Note: See TracChangeset for help on using the changeset viewer.