What are the values of the registers, as decimal integers, afterexecuting the following code?
mov r0, #101 mov r1, #101 eor r2, r2, r2 mov r3, r0 cmp r0, r1 ble else mov r2, #8 b skip else: mov r2, #10 skip: sub r3, r3, r2
R0: R1: R2: R3:
Expert Answer
Answer to What are the values of the registers, as decimal integers, after executing the following code? mov r0, #101 mov r1, #101…