home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / assemblr / library / asm_kit / stdspace.asm < prev    next >
Assembly Source File  |  1985-06-21  |  384b  |  14 lines

  1. ;ROUTINE TO SEND SPACE TO STANDARD OUTPUT
  2. ;
  3. ;A space is sent to the standard outout device
  4. ;
  5. stdspace      proc far
  6.               push ax
  7. ;
  8.               mov  al,32
  9.               call stdout
  10. ;
  11.               pop  ax
  12.               ret
  13. stdspace      endp
  14.