Changeset 170 in xtideuniversalbios for trunk/Assembly_Library/Src


Ignore:
Timestamp:
Aug 22, 2011, 2:25:51 PM (13 years ago)
Author:
krille_n_@…
google:author:
krille_n_@hotmail.com
Message:

Changes to all parts of the project:

  • Minor size optimizations
  • Commented away some ALIGN JUMP_ALIGN directives in the Int13h handler (they are either in init procedures, procedures that are rarely called or are unnecessary due to conditional assembly)
  • Fixed what appears to be a typo in EBIOS.inc
File:
1 edited

Legend:

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

    r141 r170  
    265265.FilterCurrentDirectory:
    266266    cmp     WORD [si+DTA.szFile], CURRENTDIR_CHARACTERS
    267     jne     SHORT .ReturnWithoutFiltering
    268     add     sp, BYTE 2      ; Remove return address from stack
     267    je      SHORT .ReturnWithFiltering
    269268    ret
    270269
     
    275274    cmp     WORD [si+DTA.szFile], UPDIR_CHARACTERS
    276275    jne     SHORT .ReturnWithoutFiltering
     276.ReturnWithFiltering:
    277277    add     sp, BYTE 2      ; Remove return address from stack
    278278ALIGN JUMP_ALIGN, ret
Note: See TracChangeset for help on using the changeset viewer.