Changeset 527 in xtideuniversalbios


Ignore:
Timestamp:
Mar 22, 2013, 5:40:35 PM (11 years ago)
Author:
aitotat@…
google:author:
aitotat@gmail.com
Message:

Changes to Assembly Library:

  • Menu system KeyStroke event related code now always included since the %ifdef did not seem to work.
Location:
trunk/Assembly_Library
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Src/Menu/MenuEvent.asm

    r526 r527  
    155155;       AX, BX, DX
    156156;--------------------------------------------------------------------
    157 %ifdef MENUEVENT_KeyStrokeInAX
    158157ALIGN MENU_JUMP_ALIGN
    159158MenuEvent_KeyStrokeInAX:
    160159    mov     bl, MENUEVENT_KeyStrokeInAX
    161160    SKIP2B  dx  ; mov dx, <next instruction>
    162 %endif
    163161
    164162;--------------------------------------------------------------------
  • trunk/Assembly_Library/Src/Menu/MenuInit.asm

    r526 r527  
    165165;       Nothing
    166166;--------------------------------------------------------------------
    167 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
    168167ALIGN MENU_JUMP_ALIGN
    169168MenuInit_GetHighlightedItemToAX:
    170169    mov     ax, [bp+MENUINIT.wHighlightedItem]
    171170    ret
    172 %endif
    173171
    174172
  • trunk/Assembly_Library/Src/Menu/MenuLoop.asm

    r526 r527  
    8585    xchg    ax, cx
    8686    call    .ProcessMenuSystemKeystrokeFromAX
    87 %ifdef MENUEVENT_KeyStrokeInAX
    8887    jc      SHORT NoKeystrokeToProcess
    8988    jmp     MenuEvent_KeyStrokeInAX
    90 %else
    91     jmp     SHORT NoKeystrokeToProcess
    92 %endif
    9389
    9490;--------------------------------------------------------------------
  • trunk/Assembly_Library/makefile

    r256 r527  
    2020# Assembly source code file (*.asm):
    2121#SRC_ASM = Src/LibraryTests.asm
    22 SRC_ASM = Src/TimerTest.asm
    23 #SRC_ASM = Src/LibSizeCheck.asm
     22#SRC_ASM = Src/TimerTest.asm
     23SRC_ASM = Src/LibSizeCheck.asm
    2424
    2525# Program executable file name without extension:
Note: See TracChangeset for help on using the changeset viewer.