ARM Architecture - Control Flow Instructions
Given the following ARM assembly code snippet, what will be the value in register
Assume
r2 after execution?CMP r0, r1 BEQ equal_label MOV r2, #0 B end_label equal_label: MOV r2, #1 end_label:
Assume
r0 = 5 and r1 = 5.