如何将此伪代码示例转换为Arm 7?
if R8 == 1, Go to "method 1"
else, Go to "method 2"
同样在“方法1”中,R8变为2(R8 = 2),所以下次我希望它访问“方法2”。所以我希望循环在方法1和2之间交替
答案 0 :(得分:1)
cmp r8, #1
bleq method1
cmp r8, #1 //method1 may alter CPSR
blne method2
请参阅http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0068b/CIHIDDID.html