home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MISC
/
NETWORK
/
DRIVERSS.ZIP
/
CHROUT.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Assembly Source File
|
1990-01-12
|
203 b
|
13 lines
;put into the public domain by Russell Nelson, nelson@clutx.clarkson.edu
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