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


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/Display
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Src/Display/CgaSnow.asm

    r376 r489  
    9494    ret
    9595
    96 
     96%ifdef INCLUDE_MENU_LIBRARY
    9797;--------------------------------------------------------------------
    9898; CgaSnow_RepMovsb
     
    122122    eSEG_STR rep, es, movsb
    123123    ret
    124 
     124%endif
    125125
    126126;--------------------------------------------------------------------
  • trunk/Assembly_Library/Src/Display/DisplayContext.asm

    r407 r489  
    102102
    103103
     104%ifdef INCLUDE_MENU_LIBRARY
     105
    104106;--------------------------------------------------------------------
    105107; DisplayContext_Push
     
    157159    mov     ds, di                  ; Restore DS
    158160    ret
    159 
     161%endif
    160162
    161163;--------------------------------------------------------------------
     
    187189    pop     ds
    188190    ret
    189 %endif
     191
     192%endif  ; INCLUDE_MENU_LIBRARY
    190193
    191194
     
    228231%endif
    229232
     233%ifdef INCLUDE_MENU_LIBRARY
    230234
    231235;--------------------------------------------------------------------
     
    247251    mov     [VIDEO_BDA.displayContext+DISPLAY_CONTEXT.fnCharOut], ax
    248252    ret
    249        
     253
    250254
    251255;--------------------------------------------------------------------
     
    279283    mov     [VIDEO_BDA.displayContext+DISPLAY_CONTEXT.wCharOutParam], ax
    280284    ret
    281 
     285       
     286%endif   ; INCLUDE_MENU_LIBRARY
    282287       
    283288;--------------------------------------------------------------------
  • trunk/Assembly_Library/Src/Display/DisplayCursor.asm

    r445 r489  
    3737    ret
    3838
    39 
     39%ifdef INCLUDE_MENU_LIBRARY
    4040;--------------------------------------------------------------------
    4141; DisplayCursor_SetShapeFromAX
     
    5252    mov     [VIDEO_BDA.displayContext+DISPLAY_CONTEXT.wCursorShape], ax
    5353    ret
    54 
    55 
     54%endif
     55       
    5656;--------------------------------------------------------------------
    5757; DisplayCursor_SetCoordinatesFromAX
  • trunk/Assembly_Library/Src/Display/DisplayPrint.asm

    r376 r489  
    220220
    221221
     222%ifdef INCLUDE_MENU_LIBRARY
    222223;--------------------------------------------------------------------
    223224; DisplayPrint_ClearScreenWithCharInALandAttributeInAH
     
    249250    mov     [VIDEO_BDA.displayContext+DISPLAY_CONTEXT.fpCursorPosition], di
    250251    ret
    251 
    252 
     252%endif
     253       
    253254;--------------------------------------------------------------------
    254255; DisplayPrint_ClearAreaWithHeightInAHandWidthInAL
Note: See TracChangeset for help on using the changeset viewer.