home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
assemblr
/
library
/
asm_kit
/
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