Re: File manger arrays in assembler

2014-11-26 Thread Micheal Butz
? The usual way is something like: STRUCTURE DS 0H STR_LL DS H STR_REC DS 0C255 Have you looked at the FileManager docs? This should be covered in there. Regards, Dougie On 26 November 2014 at 02:50, Micheal Butz michealb...@comcast.net wrote: Hi Would anyone know how to define an occurs

Replication factor of a group item

2014-11-26 Thread Micheal Butz
Hi This is really a follow up to my file manager question I would like to define a array of a group item So I coded for example 110cl33 Where I meant 11 x 0cl33 However for the assembler it read it as 110 x 33 Is there a way to code 11 x 0cl33 Thanks Sent from my iPhone

Re: Replication factor of a group item

2014-11-26 Thread Micheal Butz
characters ? Are you sure you need 11 empty strings rather than 10 ? nnCL33 is nn times a field of type C and length 33. When nn is 0 you don't actually allocate but only align. Which is why you see 0F or 0D. But for type C there is no alignment... On 26 November 2014 at 22:21, Micheal Butz

Re: Replication factor of a group item

2014-11-26 Thread Micheal Butz
...@listserv.uga.edu] On Behalf Of Micheal Butz Sent: Wednesday, November 26, 2014 1:21 PM To: ASSEMBLER-LIST@LISTSERV.UGA.EDU Subject: Replication factor of a group item Hi This is really a follow up to my file manager question I would like to define a array of a group item So I coded

Re: Replication factor of a group item

2014-11-26 Thread Micheal Butz
The problem is that file manager see 2 separate dsects as as 2 records Sent from my iPhone On Nov 26, 2014, at 6:10 PM, John Gilmore jwgli...@gmail.com wrote: The '0' in 0CL133 is called a duplication factor. It is not called a replication factor. Writing 11CL133 thus

Re: Replication factor of a group item

2014-11-26 Thread Micheal Butz
Wow I get a reply from the author himself I'll try it thanks Sent from my iPhone On Nov 26, 2014, at 8:16 PM, John Ehrman ehr...@us.ibm.com wrote: Micheal, Could you write DS 0CL(11*133) ? Regards... John Ehrman

File manger arrays in assembler

2014-11-25 Thread Micheal Butz
Hi Would anyone know how to define an occurs depending on array in assembler to generate a file manager template Thanks Sent from my iPhone

Rexx substr not retiring string

2014-03-31 Thread Micheal Butz
I have some imbedded JCL in a. sequitial file Problem is it starts at col 2 and I need it shift over to column 1 So I use a stem e.g outvar Do I = 1 to n. /* where n is the number of lines */ Outvar.I = substr(jcl.I,2,81) Afterwards I write out the results execio * DISKW outds (finis stem

Re: Rexx substr not retiring string

2014-03-31 Thread Micheal Butz
line to shift). Jon Perryman. From: Micheal Butz michealb...@optonline.net Outvar.I = substr(jcl.I,2,81) Afterwards I write out the results execio * DISKW outds (finis stem outvar It the variable name outvar0,outvar1

Re: FLOWASM (Was: Base-less programming)

2013-12-09 Thread Micheal Butz
Sent from my iPhone On Dec 5, 2013, at 9:43 AM, Kirk Talman rkueb...@tsys.com wrote: IBM Mainframe Assembler List ASSEMBLER-LIST@LISTSERV.UGA.EDU wrote on 12/04/2013 10:28:43 PM: From: Tony Thigpen t...@vse2pdf.com Instructions 329E thought 32A1 are hidden. I can handle hidden

Load failed to give correct results

2013-12-09 Thread Micheal Butz
Hi I coded the following instruction L. RX,TCBRBP-TCB(,RY) Which effectively loads into Rx what is at the first full word of Ry But for some reasoning get a different value Sent from my iPhone

Re: Load failed to give correct results

2013-12-09 Thread Micheal Butz
at 2:35 PM, Micheal Butz michealb...@optonline.netwrote: Hi I coded the following instruction L. RX,TCBRBP-TCB(,RY) Which effectively loads into Rx what is at the first full word of Ry But for some reasoning get a different value Is there any chance that you are running in AR mode

Re: Load failed to give correct results

2013-12-09 Thread Micheal Butz
That's just a typo Point is even though I am running in problem state these fields are not fetch protected Sent from my iPhone On Dec 9, 2013, at 4:23 PM, Mark Vitale mvit...@sinenomine.net wrote: On Dec 9, 2013, at 3:35 PM, Micheal Butz michealb...@optonline.net wrote: I coded

Re: Load failed to give correct results

2013-12-09 Thread Micheal Butz
, Binyamin Dissen bdis...@dissensoftware.com wrote: Because the TEST TCB is not your applications TCB. Use the LISTTCB command to see your TCB. On Mon, 9 Dec 2013 15:52:58 -0500 Micheal Butz michealb...@optonline.net wrote: :I'm running under TEST. : :So : :The instruction is : :L. R8

Re: Load failed to give correct results

2013-12-09 Thread Micheal Butz
: Micheal Butz michealb...@optonline.net To: ASSEMBLER-LIST@listserv.uga.edu, Date: 09/12/2013 23:02 Subject:Re: Load failed to give correct results Sent by:IBM Mainframe Assembler List ASSEMBLER-LIST@listserv.uga.edu The execution reflects the data of the TEST environment

Re: Load failed to give correct results

2013-12-09 Thread Micheal Butz
So the current TCB is TCBOTC then ? Sent from my iPhone On Dec 9, 2013, at 7:03 PM, Tony Harminc t...@harminc.com wrote: On 9 December 2013 18:43, Micheal Butz michealb...@optonline.net wrote: When do the following command under TEST L 21C.??+C? The name in the CDE Is IKJEGLST. Which I

Re: Load failed to give correct results

2013-12-09 Thread Micheal Butz
December 2013 19:44, Micheal Butz michealb...@optonline.net wrote: So the current TCB is TCBOTC then ? I'm not sure what you mean - current when your program is running, or current when you are at a TSO TEST prompt? Regardless, it would be unwise to rely on the structure of TEST's own TCBs

Re: System z Assembler Language instructor needed

2013-10-22 Thread Micheal Butz
Is this a part time job I have taught assembler @ NYU Night course I have over 35 years experience in assembler working for software vendors and in applications. I currently have a full time job But there isn't much overtime Sent from my iPhone On Oct 22, 2013, at 12:17 PM, Angelo

Strange PC entry

2012-08-23 Thread Micheal Butz
Hi, My program source has a TITLE cards the REGS macro (equating registers) and then CSECT statement with the name of the CSECT However the location counter starts at 20 In my external symbol dictionary I have a PC entry (unnamed CSECT) at location 0 however the first statement in my

Re: Strange PC entry

2012-08-23 Thread Micheal Butz
Subject: Re: Strange PC entry It's because you have x20 bytes of 'something' generated by the BEGIN macro that is before your CSECT statement. So, it's something in how the BEGIN macro is coded. Tony Thigpen -Original Message - From: Micheal Butz Sent: 08/23/2012 04:44 AM Hi, My

Printing out LCLC values

2012-01-19 Thread Micheal Butz
Hi, Is there anyway to print character variables to debug macros LCLC GBLC or for that matter arithmetic values GBLA LBLA binary values LBLB GBLB

macro defination error

2012-01-18 Thread Micheal Butz
Hi, I am getting the following error ** ASMA074E Illegal syntax in expression - MACRO - WSBEGIN The following is the first few lines of the macro MACRO NAMEWSBEGIN BASE= LCLC B(4) LCLA VAR,VAR1,VAR2 VAR SETA 2 VAR1