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
Answer Posted / steve holton
Vague, indeed....as you would round differently depending
upon the data type of the numbers involved. You can add
intergerss, floats (and doubles) and packed decimal numbers
in assembler - to which does this question refer?
As the second half of the Q addresses packed decimal, I will
assume that part one does as well...
There are various ways to round data - truncation is one
valid way, another is to move to the closest "whole value"
in the least significant digit desired in the result, or you
can mov4e to the closest number towards +infinity, or to the
closest towards -infinity, or the closest towards 0, etc.,
So first off, you need a better definition of "round". What
I think this question was attempting to get at was to see it
you know about the SRP (shift-and-round-packed) instruction,
which allows you to apply a rounding factor and shift the
packed decimal result to the desired number of significant
digits.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain about base register?
How many maximum base registers we can have in a single program?
how to pass the parameters from jcl to assembler pgm?
What is need of start 0? In steed of can we use anyother numerics? If we use what will happen?
What will happen if we drop the base register in the program which contains only one basereg?
explain about maximum displacement and how to cross this limit?
How is data passed from a calling program to an assembler called program?
What is icm instruction?
What is the use of trt instruction?
how to retrieve the instream data in sysin?
how to initialize a register to 0000?
What is maximum displacement and how to cross this limit?
How are data passed from jcl parm to assembler program?
What does the following code do? Ap wkur,=p5 where wkur is a label?
Explain about house keeping in assembler?