> Anyone have a guess what these instructions were/are?

The key instruction is TR. You also need a MVC if your program does this
more than once. And, you'll need a DC if you don't use a literal.

One-time use (and really bad programming practice) result is in literal
field!

         TR    =x'09080706050403020100',AMOUNT
         .
         .
         .


Multiple use with literal:

         MVC   RESULT,=x'09080706050403020100'
         TR    RESULT,AMOUNT
         .
         .
         .
RESULT   DC    Cl10' '

Multiple use without literal:

         MVC   RESULT,REVERSER
         TR    RESULT,AMOUNT
         .
         .
         .
REVERSER DC    X'09080706050403020100'
RESULT   DC    Cl10' '


CONFIDENTIALITY NOTICE:  This electronic transmission (including any
accompanying attachments) is intended solely for its authorized
recipient(s), and may contain confidential and/or legally privileged
information.  If you are not an intended recipient, or responsible for
delivering some or all of this transmission to an intended recipient, be
aware that any review, copying, printing, distribution, use or disclosure of
the contents of this message is strictly prohibited.  If you have received
this electronic message in error, please contact us immediately by
electronic mail at [EMAIL PROTECTED] or notify us
immediately by telephone at 1-800-345-2021 or 816-531-5575 and destroy the
original and all copies of this transmission (including any attachments).
Thank you.

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to