home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Unsorted BBS Collection
/
thegreatunsorted.tar
/
thegreatunsorted
/
programming
/
asm_programming
/
ASMFILES.ZIP
/
STDMESSO.ASM
< prev
next >
Wrap
Assembly Source File
|
1985-06-21
|
512b
|
20 lines
;ROUTINE TO SEND MESSAGE TO STANDARD OUTPUT
;
stdmessout proc far
push si
push ax
;
stdmessout1:
mov al,[si]
inc si
cmp al,0
je stdmessoutexit
call stdout
jmp stdmessout1
;
stdmessoutexit:
pop ax
pop si
ret
stdmessout endp