ARM Architecture - Control Flow Instructions
Analyze the following ARM assembly snippet:
CMP R1, #0 BEQ zero_case MOV R0, #10 B done zero_case: MOV R0, #20 done:What is the value of R0 if R1 equals 0?
