Changeset 145 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs


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.

File:
1 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
Note: See TracChangeset for help on using the changeset viewer.