home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
INFO
/
PROGJRN
/
PJ_7_5.ARC
/
OUTCHR.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1989-06-27
|
247 b
|
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