Changeset 125 in xtideuniversalbios for trunk/Assembly_Library/Src/Menu
- Timestamp:
- Mar 3, 2011, 5:43:56 PM (14 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Menu/MenuText.asm
r104 r125 1 ; File name : MenuText.asm2 1 ; Project name : Assembly Library 3 ; Created date : 21.7.20104 ; Last update : 9.12.20105 ; Author : Tomi Tilli6 2 ; Description : Functions for drawing menu texts by the user. 7 3 … … 21 17 ALIGN JUMP_ALIGN 22 18 MenuText_ClearTitleArea: 19 CALL_DISPLAY_LIBRARY PushDisplayContext ; Save cursor coordinates 23 20 call PrepareToDrawTitleArea 24 21 mov cl, [bp+MENUINIT.bTitleLines] … … 27 24 ALIGN JUMP_ALIGN 28 25 MenuText_ClearInformationArea: 26 CALL_DISPLAY_LIBRARY PushDisplayContext ; Save cursor coordinates 29 27 call MenuText_PrepareToDrawInformationArea 30 28 mov cl, [bp+MENUINIT.bInfoLines] … … 36 34 mov al, ' ' 37 35 CALL_DISPLAY_LIBRARY PrintRepeatedCharacterFromALwithCountInCX 36 CALL_DISPLAY_LIBRARY PopDisplayContext 38 37 ret 39 38
Note:
See TracChangeset
for help on using the changeset viewer.