Model 204 PPCIASM job stream for IBM z/VSE: Difference between revisions
(Created page with "The PPCIASM job stream is used to translate, assemble, and catalog IFPPCI during installation on IBM z/VSE. See the comme...") |
mNo edit summary |
||
Line 5: | Line 5: | ||
* ******************************************************************** | * ******************************************************************** | ||
* Rocket Model 204 | * Rocket Model 204 | ||
* | * 02/15 | ||
* ******************************************************************** | * ******************************************************************** | ||
* PPCIASM translates, assembles and catalogs IFPPCI | * PPCIASM translates, assembles and catalogs IFPPCI | ||
Line 51: | Line 51: | ||
/* | /* | ||
/& | /& | ||
CLOSE SYSIPT,SYSRDR | CLOSE SYSIPT,SYSRDR </nowiki></p> | ||
</nowiki></p> |
Revision as of 23:27, 6 May 2015
The PPCIASM job stream is used to translate, assemble, and catalog IFPPCI during installation on IBM z/VSE.
See the comments in the code below for instructions on editing PPCIASM.
// JOB PPCIASM * ******************************************************************** * Rocket Model 204 * 02/15 * ******************************************************************** * PPCIASM translates, assembles and catalogs IFPPCI * Remove the leading '*' from the $$ SLI statement /* /* To adapt this procedure to your installation: /* 1. Modify JOB statement /* 2. Modify the following in the job stream: /* ASSGN - this jcl assumes standard assignments /* for the logical units (SYS000) referenced /* in EXTENT statements. Add as needed: /* (e.g., // ASSGN SYS000,cuu) /* DATE - expiration date of dataset /* LENGTH - length of dataset in blocks/tracks /* if a MODEL 204 distribution file, see installation /* guide for number of 6184 byte pages /* START - starting location of dataset /* VOLSER - volume serial of dataset // EXEC PROC=M204JCL DLBL for JCL sublibrary // LIBDEF PROC,SEARCH=M204LIB.V750 // EXEC PROC=M204WRK1 // EXEC PROC=M204V750 DLBL for V750 M204 library // LIBDEF SOURCE,SEARCH=M204LIB.V750 // LIBDEF PHASE,SEARCH=PRD1.BASE // EXEC DFHEAP1$ ** $$ SLI MEM=IFPPCI.A code ***** /* CLOSE SYSPCH,PUNCH // OPTION DECK // EXEC PROC=M204JCL DLBL for JCL sublibrary // LIBDEF PROC,SEARCH=M204LIB.V750 // EXEC PROC=M204WRK2,DLBNAME=IJSYSPH,PLU=SYSPCH // EXEC PROC=M204WRK1,DLBNAME=IJSYSIN,PLU=SYSIPT // EXEC PROC=M204V750 DLBL for V750 M204 library // LIBDEF SOURCE,SEARCH=(M204LIB.V750,PRD1.BASE) // EXEC ASMA90,SIZE=(ASMA90,64K),PARM='CPAT(SYSL),EX(LBX(EDECKXIT)),* FOLD,OP(UNI),LINECOUNT(056)' CLOSE SYSIPT,SYSRDR CLOSE SYSPCH,PUNCH // EXEC PROC=M204JCL DLBL for JCL sublibrary // LIBDEF PROC,SEARCH=M204LIB.V750 // EXEC PROC=M204WRK2,DLBNAME=IJSYSIN,PLU=SYSIPT // EXEC PROC=M204V750 DLBL for V750 M204 library // EXEC LIBR,PARM='A S=M204LIB.V750;CAT IFPPCI.OBJ REP=Y' /* /& CLOSE SYSIPT,SYSRDR