home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.wwiv.com
/
ftp.wwiv.com.zip
/
ftp.wwiv.com
/
pub
/
PPPBCKP
/
SRC
/
SRC15B98.ZIP
/
TERMIN.ZIP
/
CHROUT.ASM
next >
Wrap
Assembly Source File
|
1998-01-17
|
195b
|
13 lines
;put into the public domain by Russell Nelson, nelson@crynwr.com
public chrout
chrout:
push ax ;print the char in al.
push dx
mov dl,al
mov ah,2
int 21h
pop dx
pop ax
ret