On Wed, 9 Nov 2011 06:28:07 -0800, John Walker <wrote: >I know the basics of calling other programs. I was referring to >the program that had the CEE... stuff in the start.
I think you mean Phil's example copied and annotated below: On Mon, 7 Nov 2011 21:34:19 -0500, Phil Sidler wrote: >ceetest CEEENTRY PPA=mainppa CEEENTRY is the LE macro used at entry to a LE compliant program > CALL PRINTF,string Call the PRINTF function, passing STRING > CEETERM RC=0 CEETERM is the macro to exit the LE compliant program. The rest of the program is data including the string to be printed and three data areas required by LE. >* >string DC C'Hello world!' > DC X'15' > DC X'00' >* >mainppa CEEPPA , >* > EJECT , >* > CEEDSA , > CEECAA , >* > END ceetest Hope this helps. -- Tom Marchant
