Category : Assembly Language Source Code
Archive   : ASM_SUBR.ZIP
Filename : STDCRLF

 
Output of file : STDCRLF contained in archive : ASM_SUBR.ZIP
;-------------------------routine begins--------------------------+
; ROUTINE FOR SENDING CR LF TO STANDARD OUTPUT
;
; FUNCTION: This routine sends a carriage return and then a linefeed
; through the standard output device.
; INPUT: None
; OUTPUT: ASCII codes 13 and ASCII 10 are sent to the
; standard output device.
; REGISTERS USED: No registers are modified
; SEGMENTS REFERENCED: None
; ROUTINES CALLED: stdout
; SPECIAL NOTES: None
;
stdcrlf proc far
push dx ; save registers
;
mov al,13 ; ASCII carriage return
call stdout ; send it out
mov al,10 ; ASCII line feed
call stdout ; send it out
;
pop dx ; restore registers
ret ; return
stdcrlf endp
;-------------------------routine ends---------------------------+


  3 Responses to “Category : Assembly Language Source Code
Archive   : ASM_SUBR.ZIP
Filename : STDCRLF

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/