Changeset 131 in xtideuniversalbios for trunk/Assembly_Library/Src/Keyboard
- Timestamp:
- Mar 7, 2011, 4:19:43 PM (14 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Keyboard/Keyboard.asm
r104 r131 20 20 ; DX 21 21 ;-------------------------------------------------------------------- 22 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS 22 23 ALIGN JUMP_ALIGN 23 24 Keyboard_ReadUserInputtedWordWhilePrinting: … … 43 44 pop ds 44 45 ret 46 %endif 45 47 46 48 … … 68 70 ; AX 69 71 ;-------------------------------------------------------------------- 72 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS 70 73 ALIGN JUMP_ALIGN 71 74 Keyboard_ReadUserInputtedStringToESDIWhilePrinting: … … 177 180 xor al, al ; Set ZF and clear CF 178 181 ret 182 %endif ; EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS 179 183 180 184 … … 188 192 ; AX 189 193 ;-------------------------------------------------------------------- 194 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS 190 195 ALIGN JUMP_ALIGN 191 196 Keyboard_PrintBackspace: … … 196 201 mov al, BS 197 202 jmp SHORT Keyboard_PrintInputtedCharacter 203 %endif 198 204 199 205 … … 207 213 ; AX 208 214 ;-------------------------------------------------------------------- 215 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS 209 216 ALIGN JUMP_ALIGN 210 217 Keyboard_PlayBellForUnwantedKeystroke: 211 218 mov al, BELL 212 219 ; Fall to Keyboard_PrintInputtedCharacter 220 %endif 213 221 214 222 ;-------------------------------------------------------------------- … … 221 229 ; AX 222 230 ;-------------------------------------------------------------------- 231 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS 223 232 ALIGN JUMP_ALIGN 224 233 Keyboard_PrintInputtedCharacter: … … 228 237 pop di 229 238 ret 239 %endif 230 240 231 241
Note:
See TracChangeset
for help on using the changeset viewer.