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 |
Explain how to produce soc7 abend?
How do you round the addition or subtraction of two numbers in assembler? what does the following code do? AP WKUR,=P'5' where WKUR is a label
How are data passed from jcl parm to assembler program?
How we can retrieve the instream data in SYSIN ?
what is need of START 0?. In steed of '0' can we use any other numerics?. if we use what will happen?.
explain icm instruction?
What is the use of trt instruction?
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
What is need of start 0? In steed of can we use anyother numerics? If we use what will happen?
about maximum displacement and how to cross this limit.
Can we use MVC instruction to move pack field to pack field....which instruction you will use and why ?
What is need of start 0?