Re: Simple assembler question

2016-06-23 Thread Andre Schoeman <adtschoe...@yahoo.ca>
You forgot to specify whether the top 32 bits of R0 and R15 must be zero after the lower 32 bits have been manipulated. Assuming that you do, then: LLGFR 15,3 /* Load bits 32-63 in R3 into bits 32-63 of R15 and clear bits 0-31 of R15 */ XGR 0,0 /* Initialize 64-bit R0 to

Re: Simple assembler question

2016-06-23 Thread David Cole
Newbies! ;-) At 6/23/2016 10:47 PM, Phil Smith III wrote: Chuck wrote: >I would consider something like this: >LR R15,R3 Copy low 32-bits to R15 >SRLGR0,R3,32Copy upper 32-bits to R0 >You may want to add an SR or XR for register 0 and 15

Re: Simple assembler question

2016-06-23 Thread Dave Cole
Newbies! ;-) At 6/23/2016 10:47 PM, Phil Smith III wrote: Chuck wrote: >I would consider something like this: >LR R15,R3 Copy low 32-bits to R15 >SRLGR0,R3,32Copy upper 32-bits to R0 >You may want to add an SR or XR for register 0 and 15

Re: Datasets usage question

2016-06-23 Thread Bruce Hewson
Use of properly architected dataset ALIAS names for use in APPLICATION JCL is my preferred option. Been using it for many years. Alternatively, use of INCLUDE MEMBER statements to include product versioned dataset names is possible, but gets messy across JES Multi-Access Spool environments

Re: Simple assembler question

2016-06-23 Thread Phil Smith III
Chuck wrote: >I would consider something like this: >LR R15,R3 Copy low 32-bits to R15 >SRLGR0,R3,32Copy upper 32-bits to R0 >You may want to add an SR or XR for register 0 and 15 prior to the above two instructions if you want to make sure of

Re: jedit (Was "Windows based editor / reformatter for DOS/VSE JCL?")

2016-06-23 Thread Charles Mills
@Rob, thanks, looks promising. I will give it a shot. Two assembler 370's, assembly z/OS and z/OS assembler. What more could you want? Charles -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Rob Schramm Sent: Thursday, June 23, 2016

Re: Datasets usage question

2016-06-23 Thread saul anthony babonas
Not that this will remedy your current situation, but. for future reference it might be advisable to create a member in the JCL library(ies) that establishes the dataset names via SET commands. You could then INCLUDE this member in various JCL members. When it's time to upgrade the dataset

Re: Simple assembler question

2016-06-23 Thread Hardee, Chuck
Hi Phil, I would consider something like this: LR R15,R3 Copy low 32-bits to R15 SRLGR0,R3,32Copy upper 32-bits to R0 You may want to add an SR or XR for register 0 and 15 prior to the above two instructions if you want to make sure of the

Simple assembler question

2016-06-23 Thread Phil Smith III
With all of the 273 new formats of LOAD, I assume this is hiding in there somewhere: I have a value in grande register 3. I need the high-order bits in 32-bit R0 and the low-order bits in 32-bit R15. What's the simplest/fastest way to achieve this? I have no writable memory available.

Re: Datasets usage question

2016-06-23 Thread Edward Gould
Yikes, I would *NEVER* consider using alias’s. Two things come to mind there is on CBTTAPE.ORG a find replace editor (or use the one that IBM use to give out on the CBPDO, that even might be on CBTAPE its been a while since I went through it. The smart way is to use DAF (on CBTTAPE and find who

Re: Datasets usage question

2016-06-23 Thread retired mainframer
You could consider using dataset aliases. It might eliminate the need for any JCL changes. > -Original Message- > From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On > Behalf Of Duc > Sent: Thursday, June 23, 2016 8:22 AM > To: IBM-MAIN@LISTSERV.UA.EDU > Subject:

Re: jedit (Was "Windows based editor / reformatter for DOS/VSE JCL?")

2016-06-23 Thread Rob Schramm
Ultraedit On Thu, Jun 23, 2016, 8:17 AM Charles Mills wrote: > But no ASM for Z. :-( > > Charles > > -Original Message- > From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On > Behalf Of Geoff Rousell > Sent: Thursday, June 23, 2016 2:20 AM > To:

Re: Datasets usage question

2016-06-23 Thread Lizette Koehler
Go to the CBTTAPE.ORG and download and install DAF. It produces reports that will probably fit you need. It reads raw SMF DATA I usually strip off the 14:19/42/60:69 records Then use that as input to DAF Next, you might want to look at SYMBOLICRELATE to manage the change. This could allow

Re: Datasets usage question

2016-06-23 Thread Sankaranarayanan, Vignesh
Hola Duc, Look up DAF (Dataset Audit Facility) - File #94 in CBT. – Vignesh Mainframe Infrastructure -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Duc Sent: Thursday, June 23, 2016 8:52 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject:

Re: AW: Re: TIOT exceeded

2016-06-23 Thread saul anthony babonas
Years ago we had an application that needed to sequentially read all generations of a GDG for reason that I've long forgotten. The "read" program would do its process, then delete the input file. The next step would submit itself back to the internal reader. Once the job was submitted we could

Datasets usage question

2016-06-23 Thread Duc
Dear listers, We are changing our DB2 library datasets naming convention, and i would like to list all datasets usage (essentially *.SDSNLOAD, but ther can be some others) to be able to change the jcls and others accordingly. I know that i can use SMF 14 records to realise this Do you have

OT: Blogs : Thought Leadership: Ivan Gelb Shares What It's Like to Be a CICS Mercenary

2016-06-23 Thread Edward Gould
> http://www.share.org/ > > Thought Leadership: Ivan Gelb Shares What It's Like to Be a CICS Mercenary > > Ivan Gelb is known as a frequent presenter at SHARE, Computer Measurement > Group (CMG) and most of the major IBM technical conferences. He is the > president of

Re: AW: Re: TIOT exceeded

2016-06-23 Thread Tom Marchant
On Thu, 23 Jun 2016 11:12:10 +0530, Jake Anderson wrote: >I am little worried as the GDG limits after zOS 2.2 going to be more than >255. So not sure if TIOT limit of 64k is going to help ? IIRC you are running a single IEFBR14 step to delete all of the multi-volume generation data sets for

Re: AW: Re: TIOT exceeded

2016-06-23 Thread Lizette Koehler
I have been having this conversation with IBM. So I am pursuing what happens with a GDGE with 999 but multi volume. It may be there is an apar in the future for this. But until more folks are running z/OS V2.2 with GDGE (you have to activate that in z/OS) we probably will not know. If the

Re: jedit (Was "Windows based editor / reformatter for DOS/VSE JCL?")

2016-06-23 Thread Charles Mills
But no ASM for Z. :-( Charles -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Geoff Rousell Sent: Thursday, June 23, 2016 2:20 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: jedit (Was "Windows based editor / reformatter for DOS/VSE

Re: jedit (Was "Windows based editor / reformatter for DOS/VSE JCL?")

2016-06-23 Thread Geoff Rousell
...and just so that we can keep this thread going, how about Notepad++ - there's at least one attempt at a user defined language schema for JCL http://docs.notepad-plus-plus.org/index.php/User_Defined_Language_Files Geoff Rousell IBM z Systems SE

Re: EXTERNAL: Re: Quick way to show what jobs are using tape

2016-06-23 Thread Toni Cecil
Hi Jerry, I've several tape drives ranges, like 33xx, 34xx, 36xx, all with 256 devices. For the DISPLAY cmd I've to put how many devices to show. Thx for your reply, A.Cecilio. 2016-06-22 20:19 GMT+01:00 Jerry Whitteridge : > Some variation of > > D