How to initialize 20,000 bytes in the Assembler..
Answer Posted / roocarlin
since the machine-code for MVC moves up to 256 bytes, you would need to do a series of MVCs to initialize 20000 bytes. this requires that you maintain a register or two to keep track of how far you've progressed through initialization.
possibly, you could get MVCL to do it; i've never tried...
MVCL uses 2 sets of even-odd pairs of registers to do the move.
you specify source address, destination address, length of source, length of destination, and fill character in the registers. the fill-character goes into the high order byte of (I THINK...) the destination length register (in this case r4)
l r4,=f'20000'
l r6,=f'20000'
la r7,source_field
la r5,dest_field
mvcl r4,r6
Is This Answer Correct ? | 10 Yes | 3 No |
Post New Answer View All Answers
How many maximum base registers we can have in a program?
how to initialize a register to 0000?
Explain about base register?
What is maximum displacement?
How many maximum base registers we can have in a single program?
Explain how to access vsam file?
How do you round the addition or subtraction of two numbers in assembler?
Explain the difference between various read and find statement?
How to pass the parameters from jcl to assembler program?
Explain the difference between various read and find statement and which one should be used when for better adabas performance?
What is the use of trt instruction?
explain about maximum displacement and how to cross this limit?
how to pass the parameters from jcl to assembler pgm?
Ap wkur,=p5 where wkur is a label?
What does the following code do? Ap wkur,=p5 where wkur is a label?