How to pass instream data in sysin with Assembler?
Answers were Sorted based on User's Feedback
Answer / albert n
You will need to open de file SYSIN via a DCB and read the
data via GET commands. The data in the PARM field is passed
via register 1. Any dataset you want to use in Assembler
you will need to open. There are no automatic allocation.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / munna
In jcl
//SYSIN DD *
A
B
C
it will receive in assmbler code thru R01(it contain the
address of data) first 2 byte contain the length of data
and actual data will be stored from 3rd byte.
| Is This Answer Correct ? | 5 Yes | 11 No |
What is the difference between various read and find statement,and which one should be used when for better adabas performance ?
How are data passed from JCL parm to assembler program. And how is data passed from a calling program to an assembler called program.
Explain the difference between various read and find statement?
What does the following code do? Ap wkur,=p5 where wkur is a label?
How is data passed from a calling program to an assembler called program?
What is icm instruction?
Why can only 256 bytes be moved from one address to another in a MVC?
Explain about house keeping in assembler?
WHAT WILL HAPPEN IF WE DROP THE BASE REGISTER IN THE PGM WHICH CONTAINS ONLY ONE BASEREG?
Explain about maximum displacement?
HOW MANY MAXIMUM BASE REGISTERS WE CAN HAVE IN A PROGRAM AND ALSO HOW MANY MAXIMUM BASE REGISTERS WE CAN HAVE IN A SINGLE PROGRAM.
What is house keeping in assembler? And explain the following code HELLOTSO START 0 * PRINT NOGEN BEGIN SAVE (14,12) LR 12,15 USING TYPE,12 ST 13,SAVE+4 LA 11,SAVE ST 11,8(13) LR 13,11