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