Sorry the was from iphone
/* rexx */
ADDRESS TSO
"CALL 'MYLOADLIB(MYPROG)' PASSENVB"
The program has CEEENTRY PARMREG=0
L 15,=(CEETEST)
CALL (15) (COMMAND.FC)
I think this should do what I want
-----Original Message-----
From: IBM Mainframe Assembler List <[email protected]> On
Behalf Of Seymour J Metz
Sent: Wednesday, January 26, 2022 8:51 PM
To: [email protected]
Subject: Re: Debugging Assembler Rexx programs
? "Call 'myloadlib(myprog) passenvb'
That's not a valid REXX expression. Add a trailing quote and it will be
valid REXX, but its value won't be a valid CALL command. The first parameter
to CALL is just the location of the exec; keyword parameters are not part of
the first operand.
> How would I debug this program
Set a deferred breakpoint (AT).
--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3
________________________________________
From: IBM Mainframe Assembler List [[email protected]] on
behalf of Joseph Reichman [[email protected]]
Sent: Wednesday, January 26, 2022 11:34 AM
To: [email protected]
Subject: Re: Debugging Assembler Rexx programs
The copy book is assembler
It tells me the name of the variable it's length And it's offset which would
be it's value
I have one Simple question
This url
https://secure-web.cisco.com/1_inm_1GeZSDMwwBs4WZvUVYZDoSe_DSXJaW50olRmCUT03
Sv2csyXz69dsbDszj25zwF0fjPRXREBwAWM5Un4IJRLvoJR1b2MrdplHtNVDMYMoqjwL_L-M8gfd
3xwdgxIM55iVqc-H0zN2eWp2BY9h0Tn-Ir-KTsgQXHa9ide1vHQkegz7uSPIpEch9pV4DLhRLGEv
oPOUUnZw4X8uqrDHO4xuxDNAywL-sraJ2-BMVNwigrdTl70VqfExWnQTYBwLhGSPuuKb-66UNG1C
yNa5m4n6DZ1RkBcHVgwFm0R3tXSaWjDuYRnO0vk0BUMirka12GDy8twyDgVtRmkmWhEga3QRPKEk
qCrh3oAjwEVmDpFXcGU_chzX0Cyy_0WNLYWfgwpNnzHDnxoEiZpXt4gz8EoHWL9pO_JWed_gpUpu
h23lPkCfmbm9wMGAHd9o2h/https%3A%2F%2Fshare.confex.com%2Fshare%2F115%2Fwebpro
gram%2FHandout%2FSession7691%2FS7691bla.pdf
Contains what I want to do it says how to write The program if the program
is extensive You have to debug it
The only way to get the Rexx environment Block
Address tso
"Call 'myloadlib(myprog) passenvb'
Passenvb populates register 0 with the address of the envblock
How would I debug this program
It tried test 'mylosdlib(myprog)' cp
And used ECTENVBK but now I am getting
A return code invalid language environment
> On Jan 26, 2022, at 11:16 AM, Paul Gilmartin
<[email protected]> wrote:
>
> On Jan 26, 2022, at 08:09:14, Joe Reichman wrote:
>>
>> Thanks but that would never here at the IRS this place is highly
>> sensitive to anything from the outside
>>
> It's hard for these fora to help you if:
>
> o You can't show the failing code.
>
> o You can't accept working examples from outside.
>
> Must your solution involve Assembler? Why not keep the data in a
> file, read it with Rexx and populate the variables with assignment
> statements or VALUE()?
>
> --
> gil