Changeset 489 in xtideuniversalbios for trunk/Assembly_Library/Src/Util


Ignore:
Timestamp:
Dec 13, 2012, 7:32:09 AM (11 years ago)
Author:
gregli@…
google:author:
gregli@hotmail.com
Message:

Added version string to initial title banner, for cases where there is not a boot menu (just hotkeys, or no hotkeys). Also ifdef'd out some unused code.

Location:
trunk/Assembly_Library/Src/Util
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Src/Util/Memory.asm

    r445 r489  
    7979;       Nothing
    8080;--------------------------------------------------------------------
     81%ifdef INCLUDE_MENU_LIBRARY
    8182ALIGN JUMP_ALIGN
    8283Memory_ZeroSSBPwithSizeInCX:
     
    9091    pop     es
    9192    ret
     93%endif
    9294
     95       
    9396;--------------------------------------------------------------------
    9497; Memory_ZeroESDIwithSizeInCX
  • trunk/Assembly_Library/Src/Util/Registers.asm

    r376 r489  
    5353;--------------------------------------------------------------------
    5454ALIGN JUMP_ALIGN
     55%ifdef INCLUDE_MENU_LIBRARY     
    5556Registers_CopySSBPtoESDI:
    5657    COPY_SSBP_TO_ESDI
    5758    ret
     59%endif
    5860
    5961%ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
  • trunk/Assembly_Library/Src/Util/Size.asm

    r376 r489  
    1818;       
    1919
     20%ifdef INCLUDE_MENU_LIBRARY
    2021struc BYTE_MULTIPLES
    2122    .B          resb    1
     
    8283    ret
    8384.rgbMagnitudeToChar:    db  " kMGTP"
    84 
     85%endif
    8586
    8687;--------------------------------------------------------------------
     
    111112    ret
    112113
    113 
    114114;--------------------------------------------------------------------
    115115; Size_ConvertSectorCountInBXDXAXtoKiB
     
    124124;--------------------------------------------------------------------
    125125ALIGN UTIL_SIZE_JUMP_ALIGN
    126 Size_ConvertSectorCountInBXDXAXtoKiB:
     126Size_ConvertSectorCountInBXDXAXtoKiB:               ; unused entrypoint ok
    127127Size_DivideBXDXAXbyTwo:
    128128    shr     bx, 1                   ; Divide sector count by 2...
Note: See TracChangeset for help on using the changeset viewer.