Changeset 54 in xtideuniversalbios for trunk/Assembly_Library/Src/Keyboard/Keyboard.asm


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/Keyboard/Keyboard.asm

    r52 r54  
    22; Project name  :   Assembly Library
    33; Created date  :   5.7.2010
    4 ; Last update   :   12.10.2010
     4; Last update   :   24.10.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Functions for managing keyboard.
     
    3434
    3535    call    Char_GetFilterFunctionToDXforNumericBaseInBX
    36     call    Memory_ExchangeDSSIwithESDI
     36    call    Registers_ExchangeDSSIwithESDI
    3737    call    Keyboard_ReadUserInputtedStringToESDIWhilePrinting
    38     call    Memory_ExchangeDSSIwithESDI ; Does not modify FLAGS
     38    call    Registers_ExchangeDSSIwithESDI  ; Does not modify FLAGS
    3939    jz      SHORT .CancelledByUser
    4040
     
    4242.CancelledByUser:
    4343    add     sp, BYTE BUFFER_SIZE_FOR_WORD_INPUT
    44     test    cx, cx                  ; Set ZF if string length is zero
     44    test    cx, cx                          ; Set ZF if string length is zero
    4545    pop     cx
    4646    pop     si
Note: See TracChangeset for help on using the changeset viewer.