;-------------------------routine begins--------------------------+
; ROUTINE FOR SENDING A SPACE TO STANDARD OUTPUT
;
; FUNCTION: This routine sends a space out
;           through the standard output device. 
; INPUT: None
; OUTPUT: ASCII code 32 for space is sent through the
;         standard output device.
; REGISTERS USED:  No registers are modified
; SEGMENTS REFERENCED:  None
; ROUTINES CALLED:  stdout
; SPECIAL NOTES: None
;
stdspace	proc	far
	push	dx		; save registers
;
	mov	al,32		; ASCII space
	call	stdout		; send it out
;
	pop	dx		; restore registers
	ret			; return
stdspace	endp
;-------------------------routine ends---------------------------+
