Changeset 505 in xtideuniversalbios for trunk/BIOS_Drive_Information_Tool
- Timestamp:
- Feb 25, 2013, 4:23:09 PM (12 years ago)
- google:author:
- krille_n_@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BIOS_Drive_Information_Tool/Src/Print.asm
r426 r505 3 3 4 4 ; 5 ; XTIDE Universal BIOS and Associated Tools 5 ; XTIDE Universal BIOS and Associated Tools 6 6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team. 7 7 ; … … 10 10 ; the Free Software Foundation; either version 2 of the License, or 11 11 ; (at your option) any later version. 12 ; 12 ; 13 13 ; This program is distributed in the hope that it will be useful, 14 14 ; but WITHOUT ANY WARRANTY; without even the implied warranty of 15 15 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 ; GNU General Public License for more details. 16 ; GNU General Public License for more details. 17 17 ; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 18 ; 18 ; 19 19 20 20 ; Section containing code … … 33 33 mov bl, ATTRIBUTES_NOT_USED 34 34 mov ax, DosCharOut 35 CALL_DISPLAY_LIBRARYSetCharOutputFunctionFromAXwithAttribFlagInBL36 ret 35 JMP_DISPLAY_LIBRARY SetCharOutputFunctionFromAXwithAttribFlagInBL 36 37 37 38 38 ;-------------------------------------------------------------------- … … 72 72 call Print_FormatStringFromSIwithParameterInAX 73 73 stc ; Keep the CF set 74 ALIGN JUMP_ALIGN 74 ALIGN JUMP_ALIGN, ret 75 75 .NoErrors: 76 76 ret … … 182 182 push ax 183 183 mov si, g_szFormatCHS 184 CALL_DISPLAY_LIBRARY 185 CALL_DISPLAY_LIBRARY 184 CALL_DISPLAY_LIBRARY FormatNullTerminatedStringFromCSSI 185 CALL_DISPLAY_LIBRARY PrintNewlineCharacters 186 186 187 187 pop si … … 243 243 call Print_NullTerminatedStringFromSI 244 244 pop si 245 245 246 246 ret 247 247 … … 275 275 ; AX, DI 276 276 ;-------------------------------------------------------------------- 277 JumpToFormatNullTerminatedStringFromSI: 278 CALL_DISPLAY_LIBRARY FormatNullTerminatedStringFromCSSI 279 ret 277 JumpToFormatNullTerminatedStringFromSI: 278 JMP_DISPLAY_LIBRARY FormatNullTerminatedStringFromCSSI 280 279 281 280 … … 290 289 ;-------------------------------------------------------------------- 291 290 Print_NullTerminatedStringFromSI: 292 CALL_DISPLAY_LIBRARYPrintNullTerminatedStringFromCSSI293 ret 291 JMP_DISPLAY_LIBRARY PrintNullTerminatedStringFromCSSI 292
Note:
See TracChangeset
for help on using the changeset viewer.