Changeset 54 in xtideuniversalbios for trunk/Assembly_Library/Src/String


Ignore:
Timestamp:
Oct 24, 2010, 11:01:17 AM (14 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to Assembly Library:
Drive selection moved to own dialog from File Dialog.
File Dialog now displays loading text for better usability in slow systems.
Moved some functions from Memory.asm to new Registers.asm.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Src/String/String.asm

    r53 r54  
    22; Project name  :   Assembly Library
    33; Created date  :   12.7.2010
    4 ; Last update   :   13.10.2010
     4; Last update   :   24.10.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Functions for handling characters.
     
    106106    push    si
    107107
    108     call    Memory_ExchangeDSSIwithESDI
     108    call    Registers_ExchangeDSSIwithESDI
    109109    xor     ax, ax      ; Find NULL
    110110    mov     cx, -1      ; Full segment if necessary
    111111    repne scasb
    112112    mov     cx, di
    113     call    Memory_ExchangeDSSIwithESDI
     113    call    Registers_ExchangeDSSIwithESDI
    114114
    115115    pop     si
Note: See TracChangeset for help on using the changeset viewer.