3 Assume that the following registers contain these hex cont
3. Assume that the following registers contain these hex contents: R0 = 0xF000, R1 = 0x3456, and R2 = 0xE390. Perform the following operations. Indicate the result and the register where it is stored.
Note: the operations are independent of each other.
(a) AND R3, R2, R0 (b) ORR R3, R2, R1
(c) EOR R0, R0,# 0x76 (d) AND R3, R2, R2
(e) EOR R0, R0, R0 (f) ORR R3, R0, R2
(g) AND R3, R0,# 0xFF (h) ORR R3, R0,# 0x99
(i) EOR R3, R1, R0 (j) EOR R3, R1, R1
Solution
IT WILL CONSIDER WITH TWO OPEARTIONS 1ST AND THE RESULTANT WILL BE OPERATED WITH THE PARTICULAR OPERATION HERE IM DIRECTLY POSTING THE ANSWERS WHAT I GET BELOW
1)E000 R3
B)F7D6 R3
C)F076 R0
D)E390 R3
E)F000 R0
F)F390 R3
G)0000 R3
H)F099 R3
I)B346 R3
J)3456 R3
