Re: Anyone need a random number generator?
Ron Hudson <[email protected]>
| Newsgroups | gmane.comp.emulators.turnkey-mvs |
|---|---|
| Message-ID | <[email protected]> |
On Thu, Apr 29, 2010 at 3:23 PM, Ron Hudson <[email protected]> wrote: > > > On Thu, Apr 29, 2010 at 2:57 PM, Mike Schwab <[email protected]>wrote: > >> //ddname DD DSN=SYS2.FORTLIB,DISP=SHR >> // DD DSN=SYS1.FORTLIB, DISP=SHR >> >> >> > I did this: > > //GRID JOB CLASS=A,MSGCLASS=A,MSGLEVEL=(1,1),NOTIFY=HUDSON > //FORT EXEC FORTHCLG,REGION.FORT=384K > //FORT.SYSLIN DD UNIT=SYSDA > > //FORT.SYSABEND DD SYSOUT=A > //FORT.SYSIN DD * > C 34567 > DIMENSION IGRID(40,40) > . > . fortran program here > . > END > // > //LKED.SYSLIB DD DSN=SYS2.FORTLIB,DISP=SHR, > // DD DSN=SYS1.FORTLIB,DISP=SHR > > I am using the built in 'forthclg' (fortran h link and go) procedure. > so I think "fort.syslin" overrides the "syslin" line in the procedure - So > I thought I had to override the 'syslib' lines.. > > > oops, I suppose I should say that the link step in forthclg still does not seem to see sys2.fortlib From the listing It looks like the override is not hapening... Also is there a way to tell if SYS2.FORTLIB(IRAND) was properly formed? What do I do with the DDNAME item?