Changeset 44 in xtideuniversalbios for trunk/Assembly_Library/Src/LibraryTests.asm
- Timestamp:
- Sep 27, 2010, 7:23:36 PM (15 years ago)
- google:author:
- aitotat
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/LibraryTests.asm
r41 r44 2 2 ; Project name : Assembly Library 3 3 ; Created date : 27.6.2010 4 ; Last update : 15.9.20104 ; Last update : 27.9.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Tests for Assembly Library. … … 254 254 mov ax, si 255 255 CALL_DISPLAY_LIBRARY SetCharacterPointerFromBXAX 256 mov dl, ATTRIBUTES_NOT_USED 256 257 mov ax, BUFFER_OUTPUT_WITH_CHAR_ONLY 257 CALL_DISPLAY_LIBRARY SetChar acterOutputFunctionFromAX258 CALL_DISPLAY_LIBRARY SetCharOutputFunctionFromAXwithAttribFlagInDL 258 259 lea ax, [si+STRING_BUFFER_SIZE] 259 260 CALL_DISPLAY_LIBRARY SetCharacterOutputParameterFromAX … … 408 409 call PrintHorizontalRuler 409 410 call PrintVerticalRuler 411 412 mov al, COLOR_ATTRIBUTE(COLOR_BRIGHT_WHITE, COLOR_BLACK) 413 CALL_DISPLAY_LIBRARY SetCharacterAttributeFromAL 410 414 411 415 mov ax, CURSOR_XY(0, 1) 412 416 CALL_DISPLAY_LIBRARY SetCursorCoordinatesFromAX 413 mov al, COLOR_ATTRIBUTE(COLOR_BRIGHT_WHITE, COLOR_BLACK)414 CALL_DISPLAY_LIBRARY SetCharacterAttributeFromAL415 417 call PrintFormattedStrings 416 418 … … 494 496 ret 495 497 .szIntegers: 496 db "Integers -32768, -1, 0, 1, 65535: %A|%6 d|%6d|%6d|%6d|%6u|",LF,CR,NULL498 db "Integers -32768, -1, 0, 1, 65535: %A|%6-d|%6-d|%6-d|%6-d|%6-u|",LF,CR,NULL 497 499 498 500 .PrintHexadecimals: … … 508 510 ret 509 511 .szHexadecimals: 510 db "Hexadecimals CACAh, FFFFh, 0, 5A5Ah, A5A5h:%A|%6 x|%6x|%6x|%6x|%6x|",LF,CR,NULL512 db "Hexadecimals CACAh, FFFFh, 0, 5A5Ah, A5A5h:%A|%6-x|%6-x|%6-x|%6-x|%6-x|",LF,CR,NULL 511 513 512 514 .PrintCharacters:
Note:
See TracChangeset
for help on using the changeset viewer.