Changeset 45 in xtideuniversalbios for trunk/Assembly_Library/Src/Menu/Dialog
- Timestamp:
- Sep 29, 2010, 5:59:07 PM (14 years ago)
- google:author:
- aitotat
- Location:
- trunk/Assembly_Library/Src/Menu/Dialog
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Menu/Dialog/DialogFile.asm
r44 r45 2 2 ; Project name : Assembly Library 3 3 ; Created date : 6.9.2010 4 ; Last update : 2 7.9.20104 ; Last update : 28.9.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Displays file dialog. … … 253 253 xchg ax, cx 254 254 CALL_DISPLAY_LIBRARY SetCharacterPointerFromBXAX 255 mov dl, ATTRIBUTES_NOT_USED255 mov bl, ATTRIBUTES_NOT_USED 256 256 mov ax, BUFFER_OUTPUT_WITH_CHAR_ONLY 257 CALL_DISPLAY_LIBRARY SetCharOutputFunctionFromAXwithAttribFlagIn DL257 CALL_DISPLAY_LIBRARY SetCharOutputFunctionFromAXwithAttribFlagInBL 258 258 259 259 call .FormatFileOrDirectoryToBufferFromDTAinDSSI -
trunk/Assembly_Library/Src/Menu/Dialog/DialogProgress.asm
r41 r45 2 2 ; Project name : Assembly Library 3 3 ; Created date : 15.8.2010 4 ; Last update : 16.9.20104 ; Last update : 28.9.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Displays progress bar dialog and starts progress task. … … 167 167 jcxz .DrawEmptyCharsOnly 168 168 169 mov al, SCROLL_THUMB_CHARACTER169 mov al, PROGRESS_COMPLETE_CHARACTER 170 170 CALL_DISPLAY_LIBRARY PrintRepeatedCharacterFromALwithCountInCX 171 171 … … 173 173 mov cx, dx 174 174 jcxz .NothingLeftToDraw 175 mov al, SCROLL_TRACK_CHARACTER175 mov al, PROGRESS_INCOMPLETE_CHARACTER 176 176 CALL_DISPLAY_LIBRARY PrintRepeatedCharacterFromALwithCountInCX 177 177
Note:
See TracChangeset
for help on using the changeset viewer.