Changeset 45 in xtideuniversalbios for trunk/Assembly_Library/Inc
- Timestamp:
- Sep 29, 2010, 5:59:07 PM (14 years ago)
- google:author:
- aitotat
- Location:
- trunk/Assembly_Library/Inc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Inc/Debug.inc
r41 r45 2 2 ; Project name : Assembly Library 3 3 ; Created date : 8.8.2010 4 ; Last update : 8.8.20104 ; Last update : 29.9.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Debugging macros. … … 20 20 ;-------------------------------------------------------------------- 21 21 %macro DISPLAY_DEBUG_WORD_AND_WAIT_ANY_KEY 2 22 pushf 22 23 push di 23 24 push bx … … 33 34 pop bx 34 35 pop di 36 popf 35 37 %endmacro 36 38 … … 46 48 ;-------------------------------------------------------------------- 47 49 %macro DISPLAY_DEBUG_CHARACTER_AND_WAIT_ANY_KEY 1 50 pushf 48 51 push di 49 52 push ax … … 56 59 pop ax 57 60 pop di 61 popf 58 62 %endmacro 59 63 … … 69 73 ;-------------------------------------------------------------------- 70 74 %macro DISPLAY_DEBUG_CHARACTER 1 75 pushf 71 76 push di 72 77 push ax … … 75 80 pop ax 76 81 pop di 82 popf 77 83 %endmacro 78 84 -
trunk/Assembly_Library/Inc/Dialog.inc
r41 r45 2 2 ; Project name : Assembly Library 3 3 ; Created date : 15.9.2010 4 ; Last update : 15.9.20104 ; Last update : 28.9.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Defines for Menu library dialogs. … … 75 75 76 76 77 ; Progress bar dialog 78 PROGRESS_COMPLETE_CHARACTER EQU BLOCK_FULL_FOREGROUND 79 PROGRESS_INCOMPLETE_CHARACTER EQU BLOCK_MOSTLY_BACKGROUND 80 77 81 ; File dialog 78 82 FILENAME_BUFFER_SIZE EQU 14 ; 8+1+3+NULL+alignment -
trunk/Assembly_Library/Inc/Display.inc
r44 r45 2 2 ; Project name : AssemblyLibrary 3 3 ; Created date : 25.6.2010 4 ; Last update : 2 7.9.20104 ; Last update : 28.9.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Defines for display library. … … 40 40 41 41 .SetCharacterPointerFromBXAX resb 2 42 .SetCharOutputFunctionFromAXwithAttribFlagIn DL resb 242 .SetCharOutputFunctionFromAXwithAttribFlagInBL resb 2 43 43 .SetCharacterOutputParameterFromAX resb 2 44 44 .SetCharacterAttributeFromAL resb 2 -
trunk/Assembly_Library/Inc/Menu.inc
r44 r45 107 107 108 108 .bFlags resb 1 ; Menu flags 109 .bLastSecondPrinted resb 1 ; To minimize CGA snow when using timeouts109 resb 1 110 110 .wTimeoutCounter resb 2 111 111
Note:
See TracChangeset
for help on using the changeset viewer.