Changeset 592 in xtideuniversalbios for trunk/Assembly_Library/Src/Keyboard
- Timestamp:
- Jun 25, 2018, 10:29:27 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Keyboard/Keyboard.asm
r589 r592 37 37 ; DX 38 38 ;-------------------------------------------------------------------- 39 %ifndef EXCLUDE_FROM_X TIDE_UNIVERSAL_BIOS39 %ifndef EXCLUDE_FROM_XUB OR EXCLUDE_FROM_BIOSDRVS 40 40 ALIGN KEYBOARD_JUMP_ALIGN 41 41 Keyboard_ReadUserInputtedWordWhilePrinting: … … 87 87 ; AX 88 88 ;-------------------------------------------------------------------- 89 %ifndef EXCLUDE_FROM_X TIDE_UNIVERSAL_BIOS89 %ifndef EXCLUDE_FROM_XUB OR EXCLUDE_FROM_BIOSDRVS 90 90 ALIGN KEYBOARD_JUMP_ALIGN 91 91 Keyboard_ReadUserInputtedStringToESDIWhilePrinting: … … 98 98 xor bx, bx ; Zero character counter 99 99 dec cx ; Decrement buffer size for NULL 100 %ifdef CLD_NEEDED 100 101 cld 102 %endif 101 103 ALIGN KEYBOARD_JUMP_ALIGN 102 104 .GetCharacterFromUser: … … 197 199 xor al, al ; Set ZF and clear CF 198 200 ret 199 %endif ; EXCLUDE_FROM_X TIDE_UNIVERSAL_BIOS201 %endif ; EXCLUDE_FROM_XUB OR EXCLUDE_FROM_BIOSDRVS 200 202 201 203 … … 209 211 ; AX 210 212 ;-------------------------------------------------------------------- 211 %ifndef EXCLUDE_FROM_X TIDE_UNIVERSAL_BIOS213 %ifndef EXCLUDE_FROM_XUB OR EXCLUDE_FROM_BIOSDRVS 212 214 ALIGN KEYBOARD_JUMP_ALIGN 213 215 Keyboard_PrintBackspace: … … 230 232 ; AX 231 233 ;-------------------------------------------------------------------- 232 %ifndef EXCLUDE_FROM_X TIDE_UNIVERSAL_BIOS234 %ifndef EXCLUDE_FROM_XUB OR EXCLUDE_FROM_BIOSDRVS 233 235 ALIGN KEYBOARD_JUMP_ALIGN 234 236 Keyboard_PlayBellForUnwantedKeystroke: … … 246 248 ; AX 247 249 ;-------------------------------------------------------------------- 248 %ifndef EXCLUDE_FROM_X TIDE_UNIVERSAL_BIOS250 %ifndef EXCLUDE_FROM_XUB OR EXCLUDE_FROM_BIOSDRVS 249 251 ALIGN KEYBOARD_JUMP_ALIGN 250 252 Keyboard_PrintInputtedCharacter: … … 266 268 ; AX 267 269 ;-------------------------------------------------------------------- 268 %ifndef EXCLUDE_FROM_X TIDE_UNIVERSAL_BIOS; Only used when debugging270 %ifndef EXCLUDE_FROM_XUB OR EXCLUDE_FROM_BIOSDRVS ; Only used when debugging 269 271 ALIGN KEYBOARD_JUMP_ALIGN 270 272 Keyboard_RemoveAllKeystrokesFromBuffer: … … 289 291 ; Nothing 290 292 ;-------------------------------------------------------------------- 291 %ifdef EXCLUDE_FROM_X TIDE_UNIVERSAL_BIOS293 %ifdef EXCLUDE_FROM_XUB 292 294 %define EXCLUDE 293 295 %ifdef MODULE_HOTKEYS OR MODULE_BOOT_MENU
Note:
See TracChangeset
for help on using the changeset viewer.