Represent the following conditional control statement by two register transfer statements with control functions If (P = 1) then (R1 ← R2) else if (Q = 1) then R1 ← R3)
Answers
Answered by
0
Answer:
I done now the answer first give some examples
of these questions
Answered by
4
The answer to the question is:
- A register transfer operation is one that is done on the data stored in the register.
- Register transfer activities are classified into numerous sorts.
R2 <- R1 Simple Transfer
- R1's contents are copied to R2 without changing R1's contents. It is a transfer operation that is not conditional.
Conditional forwarding-
- P = 1 implies that R1's contents will be passed on to R2. It is a one-way operation.
Simultaneous operations -
- Use commas to separate two or more operations (,).
If P = 1, the contents of R1 are loaded into R2, and the contents of R2 are loaded into R1.
Similar questions