Ignore:
Timestamp:
Feb 2, 2011, 1:33:48 AM (13 years ago)
Author:
krille_n_@…
google:author:
krille_n_@hotmail.com
Message:

Optimizations to Assembly Library.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menuitem.asm

    r59 r103  
    1 ; File name     :   Menuitem.asm
    21; Project name  :   XTIDE Universal BIOS Configurator v2
    3 ; Created date  :   5.10.2010
    4 ; Last update   :   19.11.2010
    5 ; Author        :   Tomi Tilli
    62; Description   :   Functions for accessing MENUITEM structs.
    73
     
    3632ALIGN JUMP_ALIGN
    3733Menuitem_ActivateMultichoiseSelectionForMenuitemInDSSI:
    38     call    Registers_CopyDSSItoESDI
     34    Registers_CopyDSSItoESDI
    3935
    4036    mov     cx, DIALOG_INPUT_size
     
    4945    cmp     ax, BYTE NO_ITEM_SELECTED
    5046    je      SHORT .NothingToChange
    51     call    Registers_CopyESDItoDSSI
     47    Registers_CopyESDItoDSSI
    5248    call    Menuitem_StoreValueFromAXtoMenuitemInDSSI
    5349.NothingToChange:
     
    6763ALIGN JUMP_ALIGN
    6864Menuitem_ActivateHexInputForMenuitemInDSSI:
    69     call    Registers_CopyDSSItoESDI
     65    Registers_CopyDSSItoESDI
    7066
    7167    mov     cx, WORD_DIALOG_IO_size
     
    8682ALIGN JUMP_ALIGN
    8783Menuitem_ActivateUnsignedInputForMenuitemInDSSI:
    88     call    Registers_CopyDSSItoESDI
     84    Registers_CopyDSSItoESDI
    8985
    9086    mov     cx, WORD_DIALOG_IO_size
     
    104100    je      SHORT .NothingToChange
    105101    mov     ax, [si+WORD_DIALOG_IO.wReturnWord]
    106     call    Registers_CopyESDItoDSSI
     102    Registers_CopyESDItoDSSI
    107103    call    Menuitem_StoreValueFromAXtoMenuitemInDSSI
    108104.NothingToChange:
Note: See TracChangeset for help on using the changeset viewer.