Changeset 359 in xtideuniversalbios for trunk/BIOS_Drive_Information_Tool/Src/Print.asm
- Timestamp:
- Mar 19, 2012, 2:22:17 PM (13 years ago)
- google:author:
- aitotat@gmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BIOS_Drive_Information_Tool/Src/Print.asm
r327 r359 7 7 8 8 ;-------------------------------------------------------------------- 9 ; Print_SetCharacterOutputToSTDOUT 10 ; Parameters: 11 ; Nothing 12 ; Returns: 13 ; Nothing 14 ; Corrupts registers: 15 ; AX, BX, DI 16 ;-------------------------------------------------------------------- 17 ALIGN JUMP_ALIGN 18 Print_SetCharacterOutputToSTDOUT: 19 mov bl, ATTRIBUTES_NOT_USED 20 mov ax, DosCharOut 21 CALL_DISPLAY_LIBRARY SetCharOutputFunctionFromAXwithAttribFlagInBL 22 ret 23 24 ;-------------------------------------------------------------------- 9 25 ; Use DOS standard output so strings can be redirected to a file. 10 26 ; 11 ; Print_DosCharOut27 ; DosCharOut 12 28 ; Parameters: 13 29 ; AL: Character to output … … 20 36 ;-------------------------------------------------------------------- 21 37 ALIGN JUMP_ALIGN 22 Print_DosCharOut:38 DosCharOut: 23 39 xchg dx, ax 24 40 mov ah, 02h ; DOS 1+ - WRITE CHARACTER TO STANDARD OUTPUT … … 51 67 ;--------------------------------------------------------------------- 52 68 ; Print_DriveNumberFromDLusingFormatStringInSI 69 ; Print_VersionStringFromAXusingFormatStringInSI 53 70 ; Print_BiosFunctionNumberFromAXusingFormatStringInSI 54 71 ; Print_SectorSizeFromAXusingFormatStringInSI … … 64 81 Print_DriveNumberFromDLusingFormatStringInSI: 65 82 eMOVZX ax, dl 83 Print_VersionStringFromAXusingFormatStringInSI: 66 84 Print_BiosFunctionNumberFromAXusingFormatStringInSI: 67 85 Print_SectorSizeFromAXusingFormatStringInSI:
Note:
See TracChangeset
for help on using the changeset viewer.