home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Unsorted BBS Collection
/
thegreatunsorted.tar
/
thegreatunsorted
/
programming
/
asm_programming
/
ASMFILES.ZIP
/
STDSPACE.ASM
< prev
next >
Wrap
Assembly Source File
|
1985-06-21
|
384b
|
14 lines
;ROUTINE TO SEND SPACE TO STANDARD OUTPUT
;
;A space is sent to the standard outout device
;
stdspace proc far
push ax
;
mov al,32
call stdout
;
pop ax
ret
stdspace endp