Changeset 116 in xtideuniversalbios for trunk/Assembly_Library/Src
- Timestamp:
- Feb 26, 2011, 11:55:06 PM (14 years ago)
- google:author:
- krille_n_@hotmail.com
- Location:
- trunk/Assembly_Library/Src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/File/Directory.asm
r41 r116 1 ; File name : Directory.asm2 1 ; Project name : Assembly Library 3 ; Created date : 3.9.20104 ; Last update : 6.9.20105 ; Author : Tomi Tilli6 2 ; Description : Functions for accessing directories. 7 3 … … 70 66 push dx 71 67 72 xor dx, dx ; Default drive (00h)73 mov ah, GET_CURRENT_DIRECTORY68 mov ah, GET_CURRENT_DIRECTORY ; GET_CURRENT_DIRECTORY = 47h 69 cwd ; Default drive (00h) 74 70 int DOS_INTERRUPT_21h 75 71 … … 131 127 ; Directory_UpdateDTAForNextMatchUsingPreviousParameters 132 128 ; Parameters: 133 ; Nothing (Parameters from previous call to 129 ; Nothing (Parameters from previous call to 134 130 ; Directory_UpdateDTAForFirstMatchForDSSIwithAttributesInCX are used) 135 131 ; Returns: -
trunk/Assembly_Library/Src/Menu/MenuAttributes.asm
r104 r116 48 48 push ds 49 49 50 LOAD_BDA_SEGMENT_TO ds, ax 50 LOAD_BDA_SEGMENT_TO ds, ax, ! 51 51 mov al, [VIDEO_BDA.bMode] ; Load BIOS display mode (0, 1, 2, 3 or 7) 52 52 cmp al, 7 … … 73 73 pop ds 74 74 ret 75 76 75 77 76 -
trunk/Assembly_Library/Src/Menu/MenuInit.asm
r104 r116 19 19 push es 20 20 push ds 21 LOAD_BDA_SEGMENT_TO ds, cx 21 LOAD_BDA_SEGMENT_TO ds, cx, ! 22 22 push WORD [BDA.wVidCurShape] 23 23 mov cl, MENU_size … … 74 74 call MenuText_RefreshTitle ; Draw title strings 75 75 call MenuText_RefreshAllItems ; Draw item strings 76 jmp MenuText_RefreshInformation ; Draw information strings 76 jmp MenuText_RefreshInformation ; Draw information strings 77 77 78 78
Note:
See TracChangeset
for help on using the changeset viewer.