Changeset 145 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS


Ignore:
Timestamp:
Mar 15, 2011, 11:28:17 AM (13 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
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs/RamVars.asm

    r128 r145  
    158158    cmp     dl, al                              ; Above last supported?
    159159    jae     SHORT .DriveNotHandledByThisBIOS
    160     cmp     dl, ah                              ; Below first supported?
    161     jb      SHORT .DriveNotHandledByThisBIOS
    162     xchg    ax, di
     160    cmp     ah, dl                              ; Below first supported?
     161    ja      SHORT .DriveNotHandledByThisBIOS
    163162    stc
    164     ret
    165163ALIGN JUMP_ALIGN
    166164.DriveNotHandledByThisBIOS:
    167165    xchg    ax, di
    168     clc
    169166    ret
    170167
  • trunk/XTIDE_Universal_BIOS/makefile

    r132 r145  
    8080IHEADERS = $(HEADERS:%=-I%)
    8181
    82 # Path + target file to be build
     82# Path + target file to be built
    8383TARGET = $(BUILD_DIR)/$(PROG)
    8484
     
    118118# Make clean debug and release versions
    119119all: clean at xtplus xt
    120     @echo All build!
     120    @echo All done!
    121121
    122122at:
    123123    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_AT) -l"$(TARGET)_at.lst" -o"$(TARGET)_at.bin"
    124     @echo AT version "$(TARGET)_at.bin" build.
     124    @echo AT version "$(TARGET)_at.bin" built.
    125125
    126126xtplus:
    127127    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XTPLUS) -l"$(TARGET)_xtp.lst" -o"$(TARGET)_xtp.bin"
    128     @echo XT plus version "$(TARGET)_xtp.bin" build.
     128    @echo XT plus version "$(TARGET)_xtp.bin" built.
    129129
    130130xt:
    131131    @$(AS) "$(SRC_ASM)" $(ASFLAGS) $(DEFS_XT) -l"$(TARGET)_xt.lst" -o"$(TARGET)_xt.bin"
    132     @echo XT version "$(TARGET)_xt.bin" build.
     132    @echo XT version "$(TARGET)_xt.bin" built.
    133133
    134134clean:
Note: See TracChangeset for help on using the changeset viewer.