Changeset 142 in xtideuniversalbios for trunk/Assembly_Library/Inc
- Timestamp:
- Mar 14, 2011, 5:17:47 PM (14 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Inc/Debug.inc
r45 r142 1 ; File name : Debug.inc2 1 ; Project name : Assembly Library 3 ; Created date : 8.8.20104 ; Last update : 29.9.20105 ; Author : Tomi Tilli6 2 ; Description : Debugging macros. 7 3 %ifndef DEBUG_INC … … 28 24 mov bx, %2 29 25 CALL_DISPLAY_LIBRARY PrintWordFromAXwithBaseInBX 26 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS 30 27 call Keyboard_RemoveAllKeystrokesFromBuffer 28 %endif 31 29 call Keyboard_GetKeystrokeToAXandWaitIfNecessary 32 30 … … 54 52 mov al, %1 55 53 CALL_DISPLAY_LIBRARY PrintCharacterFromAL 54 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS 56 55 call Keyboard_RemoveAllKeystrokesFromBuffer 56 %endif 57 57 call Keyboard_GetKeystrokeToAXandWaitIfNecessary 58 58 … … 95 95 %macro WAIT_ANY_KEY_TO_CONTINUE 0 96 96 push ax 97 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS 97 98 call Keyboard_RemoveAllKeystrokesFromBuffer 99 %endif 98 100 call Keyboard_GetKeystrokeToAXandWaitIfNecessary 99 101 pop ax … … 101 103 102 104 103 104 105 %endif ; DEBUG_INC
Note:
See TracChangeset
for help on using the changeset viewer.