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 |
how to find the dump
How to pass instream data in sysin with Assembler?
What is symbol table in assembler?
What is 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.
Why can only 256 bytes be moved from one address to another in a MVC?
explain icm instruction?
How to initialize 20,000 bytes in the Assembler..
What is need of start 0? In steed of can we use anyother numerics? If we use what will happen?
What does "using" do?
how do you round the addition or subtraction of two numbers in assembler? what does the following code do? change process tool(code changes from dev to prd) the changes made to your code should be effected in live. How the process takes place. That is how can you move the code changes from development to production?
Explain how to pass instream data in sysin with assembler?