Changeset 183 in xtideuniversalbios for trunk/Assembly_Library/Src
- Timestamp:
- Nov 15, 2011, 4:35:14 AM (13 years ago)
- google:author:
- gregli@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Menu/MenuEvent.asm
r133 r183 21 21 pop ds 22 22 mov si, bp 23 mov bl, MENUEVENT .InitializeMenuinitFromDSSI23 mov bl, MENUEVENT_InitializeMenuinitFromDSSI 24 24 jmp SHORT MenuEvent_SendFromBX 25 25 … … 37 37 ALIGN JUMP_ALIGN 38 38 MenuEvent_ExitMenu: 39 mov bl, MENUEVENT .ExitMenu39 mov bl, MENUEVENT_ExitMenu 40 40 jmp SHORT MenuEvent_SendFromBX 41 41 … … 53 53 ALIGN JUMP_ALIGN 54 54 MenuEvent_IdleProcessing: 55 mov bl, MENUEVENT .IdleProcessing55 mov bl, MENUEVENT_IdleProcessing 56 56 jmp SHORT MenuEvent_SendFromBX 57 57 … … 71 71 ALIGN JUMP_ALIGN 72 72 MenuEvent_RefreshTitle: 73 mov bl, MENUEVENT .RefreshTitle73 mov bl, MENUEVENT_RefreshTitle 74 74 SKIP2B cx ; mov cx, <next instruction> 75 75 76 76 MenuEvent_RefreshInformation: 77 mov bl, MENUEVENT .RefreshInformation77 mov bl, MENUEVENT_RefreshInformation 78 78 mov cx, [bp+MENUINIT.wHighlightedItem] 79 79 jmp SHORT MenuEvent_SendFromBX … … 94 94 ALIGN JUMP_ALIGN 95 95 MenuEvent_RefreshItemFromCX: 96 mov bl, MENUEVENT .RefreshItemFromCX96 mov bl, MENUEVENT_RefreshItemFromCX 97 97 jmp SHORT MenuEvent_SendFromBX 98 98 … … 114 114 push dx 115 115 116 mov bl, MENUEVENT .ItemHighlightedFromCX116 mov bl, MENUEVENT_ItemHighlightedFromCX 117 117 call MenuEvent_SendFromBX 118 118 … … 137 137 ALIGN JUMP_ALIGN 138 138 MenuEvent_KeyStrokeInAX: 139 mov bl, MENUEVENT .KeyStrokeInAX139 mov bl, MENUEVENT_KeyStrokeInAX 140 140 SKIP2B dx ; mov dx, <next instruction> 141 141 … … 153 153 ;-------------------------------------------------------------------- 154 154 MenuEvent_ItemSelectedFromCX: 155 mov bl, MENUEVENT .ItemSelectedFromCX155 mov bl, MENUEVENT_ItemSelectedFromCX 156 156 ; Fall to MenuEvent_SendFromBX 157 157
Note:
See TracChangeset
for help on using the changeset viewer.