Changeset 45 in xtideuniversalbios for trunk/Assembly_Library/Src/Menu/Dialog


Ignore:
Timestamp:
Sep 29, 2010, 5:59:07 PM (14 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to assembly library:
Changed SetCharOutputFunctionFromAXwithAttribFlagInDL to SetCharOutputFunctionFromAXwithAttribFlagInBL since DX register gets corrupted by Display_FunctionFromDI.
Implemented quicksort.

Location:
trunk/Assembly_Library/Src/Menu/Dialog
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Src/Menu/Dialog/DialogFile.asm

    r44 r45  
    22; Project name  :   Assembly Library
    33; Created date  :   6.9.2010
    4 ; Last update   :   27.9.2010
     4; Last update   :   28.9.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Displays file dialog.
     
    253253    xchg    ax, cx
    254254    CALL_DISPLAY_LIBRARY SetCharacterPointerFromBXAX
    255     mov     dl, ATTRIBUTES_NOT_USED
     255    mov     bl, ATTRIBUTES_NOT_USED
    256256    mov     ax, BUFFER_OUTPUT_WITH_CHAR_ONLY
    257     CALL_DISPLAY_LIBRARY SetCharOutputFunctionFromAXwithAttribFlagInDL
     257    CALL_DISPLAY_LIBRARY SetCharOutputFunctionFromAXwithAttribFlagInBL
    258258
    259259    call    .FormatFileOrDirectoryToBufferFromDTAinDSSI
  • trunk/Assembly_Library/Src/Menu/Dialog/DialogProgress.asm

    r41 r45  
    22; Project name  :   Assembly Library
    33; Created date  :   15.8.2010
    4 ; Last update   :   16.9.2010
     4; Last update   :   28.9.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Displays progress bar dialog and starts progress task.
     
    167167    jcxz    .DrawEmptyCharsOnly
    168168
    169     mov     al, SCROLL_THUMB_CHARACTER
     169    mov     al, PROGRESS_COMPLETE_CHARACTER
    170170    CALL_DISPLAY_LIBRARY PrintRepeatedCharacterFromALwithCountInCX
    171171
     
    173173    mov     cx, dx
    174174    jcxz    .NothingLeftToDraw
    175     mov     al, SCROLL_TRACK_CHARACTER
     175    mov     al, PROGRESS_INCOMPLETE_CHARACTER
    176176    CALL_DISPLAY_LIBRARY PrintRepeatedCharacterFromALwithCountInCX
    177177
Note: See TracChangeset for help on using the changeset viewer.