home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
progjorn
/
pj_7_5.arc
/
OUTCHR.ASM
< prev
next >
Wrap
Assembly Source File
|
1989-06-27
|
247b
|
24 lines
title outchr
.model small
.code
extrn ms_dos:near
public outchr
;; outchr
;
; entry AL char
; uses AX
;
outchr proc
push ax
push dx
mov ah,2
mov dl,al
call ms_dos
pop dx
pop ax
ret
outchr endp
end