Changeset 52 in xtideuniversalbios for trunk/Assembly_Library/Src/LibraryTests.asm
- Timestamp:
- Oct 12, 2010, 6:51:07 PM (15 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/LibraryTests.asm
r50 r52 2 2 ; Project name : Assembly Library 3 3 ; Created date : 27.6.2010 4 ; Last update : 27.9.20104 ; Last update : 12.10.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Tests for Assembly Library. … … 71 71 mov BYTE [si+MENUINIT.bTitleLines], TEST_MENU_TITLE_LINES 72 72 mov BYTE [si+MENUINIT.bInfoLines], TEST_MENU_INFO_LINES 73 mov ax, 1 74 CALL_MENU_LIBRARY HighlightItemFromAX 73 mov WORD [si+MENUINIT.wHighlightedItem], 1 75 74 stc 76 75 ret … … 95 94 ret 96 95 .szInfoTitle: 97 db "Information line 1,", CR,LF,96 db "Information line 1,",LF,CR, 98 97 db "Information line 2. ", 99 98 db "This comes (12) right after Information line 2.",NULL … … 615 614 db "so scroll bars and message dialog can be tested. This string does not use " 616 615 db "formatting so it should be simple to display this correctly. This string " 617 db "does, however, use newline characters. Lets change line right now!", CR,LF,616 db "does, however, use newline characters. Lets change line right now!",LF,CR, 618 617 db "Well did it work? Let's try line feed alone",LF,"Well? " 618 db "Now two LFs:",LF,LF,"What happened? " 619 619 db "We could also see what two spaces does _ _. There was two spaces between " 620 620 db "underscores. Lets try three this time _ _. Well, did they work correctly? " 621 db "What next, I guess that was all, no wait. Let's see what TAB does! Here it " 622 db "goes:",TAB,"Well did it work? Just one more time:",TAB,"Well are we good? " 623 db "No since LF is the only supported control character, unfortunately. " 621 db "Too bad that LF, CR and BS (backspace) are the only supported control " 622 db "characters. Others don't either work or they break line splitting. " 624 623 db "This is the last sentence of this long string!",NULL 625 624
Note:
See TracChangeset
for help on using the changeset viewer.