Changeset 145 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS_Configurator_v2/Src


Ignore:
Timestamp:
Mar 15, 2011, 11:28:17 AM (14 years ago)
Author:
krille_n_@…
google:author:
krille_n_@hotmail.com
Message:

Minor size optimizations to all parts of the project (even the old Configurator).
Also added a new 'release' option to the makefiles of both versions of the Configurator. It invokes UPX and makes the Configurator programs ridiculously tiny.

Location:
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src
Files:
3 edited

Legend:

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

    r144 r145  
    6868
    6969;--------------------------------------------------------------------
    70 ; Buffers_NewBiosWithSizeInCXandSourceInAXhasBeenLoadedForConfiguration
     70; Buffers_NewBiosWithSizeInDXCXandSourceInAXhasBeenLoadedForConfiguration
    7171;   Parameters:
    7272;       AX:     EEPROM source (FLG_CFGVARS_FILELOADED or FLG_CFGVARS_ROMLOADED)
  • trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/EEPROM.asm

    r138 r145  
    4949    inc     bx
    5050    loop    .CheckNextEepromSize
    51     clc     ; None of the supported EEPROMs are large enough
    52     ret
     51    ret     ; Return with CF cleared (none of the supported EEPROMs are large enough)
    5352ALIGN JUMP_ALIGN
    5453.ReturnEepromSizeInCX:
  • trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages/FlashMenu.asm

    r123 r145  
    218218    call    Dialogs_DisplayErrorFromCSDX
    219219    stc
    220     ret
    221 ALIGN JUMP_ALIGN
     220ALIGN JUMP_ALIGN, ret
    222221.ImageFitsInSelectedEeprom:
    223     clc
    224222    ret
    225223
Note: See TracChangeset for help on using the changeset viewer.