InterviewSolution
Saved Bookmarks
| 1. |
How To Pass The Parameters From Jcl To Assembler Pgm? |
|
Answer» R1 contains a fullword that contains a ADDRESS POINTING to the parm data. In pgm before ACCESSING the parm data use L Rn,0(,R1) where n=3,..11 , Rn contains the address that points to parm data. Create DSECT that contains a halfword and the length of the data. R1 contains a fullword that contains a address pointing to the parm data. In pgm before accessing the parm data use L Rn,0(,R1) where n=3,..11 , Rn contains the address that points to parm data. Create DSECT that contains a halfword and the length of the data. |
|