Changeset 581 in xtideuniversalbios
- Timestamp:
- Feb 25, 2015, 12:54:50 PM (10 years ago)
- google:author:
- krille_n_@hotmail.com
- Location:
- trunk/Assembly_Library/Src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Keyboard/Keyboard.asm
r526 r581 289 289 ; Nothing 290 290 ;-------------------------------------------------------------------- 291 292 291 %ifdef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS 293 292 %define EXCLUDE … … 301 300 302 301 %ifndef EXCLUDE 303 304 302 ALIGN KEYBOARD_JUMP_ALIGN 305 303 Keyboard_GetKeystrokeToAXandLeaveItToBuffer: -
trunk/Assembly_Library/Src/Menu/MenuLoop.asm
r527 r581 202 202 ALIGN MENU_JUMP_ALIGN 203 203 .DecrementSelectedItem: 204 mov a x, -1205 SKIP2B cx ; mov cx, <next instruction>204 mov al, -1 205 SKIP2B cx 206 206 .IncrementSelectedItem: 207 mov al, 1 ; AH is already 0 207 mov al, 1 208 cbw 208 209 ALIGN MENU_JUMP_ALIGN 209 210 .MoveHighlightedItemByAX:
Note:
See TracChangeset
for help on using the changeset viewer.