What are the values of the registers, as decimal integers, afterexecuting the following code?
mov r0, #9 mov r1, #1 top: cmp r0, #0 beq finish lsl r1, r1, #1 sub r0, r0, #1 b top finish: mov r2, #47
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, #9 mov r1, #1 top…