ARM Architecture - Control Flow Instructions
Given the ARM assembly snippet:
What value will R1 hold if R0 equals 10?
CMP R0, #10 BEQ equal_label MOV R1, #0 B end_label equal_label: MOV R1, #1 end_label:
What value will R1 hold if R0 equals 10?
