Hi!
I'm studing now the Assembler programming on z/os, but I must admit that I'm completely lost!
I have the following example code in JCL, and I don't know how make it work... or if it is really working!!!
//ADD JOB 1,NOTIFY=&SYSUID,MSGCLASS=H
//**************************************************
//* COMPILE ASSEMBLER PROGRAM
//**************************************************
//STEP1 EXEC HLASMCL
//C.SYSIN DD DSN=ZCON026.ASSEMB(ASM010),DISP=SHR
//L.SYSLMOD DD DSN=ZCON026.PART3.LOAD(ADD),DISP=SHR
// IF RC = 0 THEN
//STEP2 EXEC PGM=ADD
//STEPLIB DD DSN=ZCON026.PART3.LOAD,DISP=SHR
//PRTLINE DD SYSOUT=*
// ELSE
// ENDIF
The member ASM010 is the assembler source.
How I can compile this code above?
I've just tried de SUB command. It suppose to create the ADD member on the LOAD dataset, right?