please be descriptive in explanation
after this section of assembly code is executed? 1. What are the final values of R3, R4 and R5 after this section Register Before After R3 COMPARE – CMP R5,#8 CRS BLE Label_1 ADDR3, RS, R4 B Label_2 Label_1 SUBS R3, R4, R5 B Done Label_2 ADDR4, R4, R3 Done 2. Write the assembly code equivalent for the if/else statement below. Assume x is in register R4 and y is in register R3. if(x) y++; else y– Show transcribed image text after this section of assembly code is executed? 1. What are the final values of R3, R4 and R5 after this section Register Before After R3 COMPARE – CMP R5,#8 CRS BLE Label_1 ADDR3, RS, R4 B Label_2 Label_1 SUBS R3, R4, R5 B Done Label_2 ADDR4, R4, R3 Done 2. Write the assembly code equivalent for the if/else statement below. Assume x is in register R4 and y is in register R3. if(x) y++; else y–
Expert Answer
Answer to after this section of assembly code is executed? 1. What are the final values of R3, R4 and R5 after this section Regist…