Google
 

Trailing-Edge - PDP-10 Archives - decuslib10-06 - 43,50362/convrt.mac
There are no other files named convrt.mac in the archive.
	TITLE	CONVRT - convert a character in some way
	SUBTTL	Rob Cook
	SEARCH	C,IO

COMMENT ;

This edition of CONVRT is the null converter which merely
returns the value it was given.
Call:
	T1 : character right-justified
	PUSHJ  P,CONVRT##
	T1 : converted character, right-justified

;

	HISEG$
	ENTRY	CONVRT
CONVRT::
	POPJ	P,

	END