Google
 

Trailing-Edge - PDP-10 Archives - tops10and20_integ_tools_v9_3-aug-86 - tools/crc/browse/crsout.mac
There are no other files named crsout.mac in the archive.
	TITLE	crsout - OUTPUT A string TO THE SCREEN
	SEARCH	CRCSYM,MONSYM,MACSYM
	ENTRY crsout
	external gtbypt
;
;REFERENCE FROM FORTRAN WITH
;      CALL crsout(Istrg)
;THE ROUTINE SENDS THE CHARACTER string TO THE TERMINAL
;
crsout:	setz	t1,       		;get argument 0
	call	gtbypt			;get the byte pointer to the string
	psout%				;and output
	ret				;return
	end