Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 ARM7 汇编中,我想找到两个数字中较小的一个。这些数字将是有符号的 32 位值。这是我尝试过的-
.global min32 .text min: CMP R0,R1 BGE end BX LR end: MOV R0, R1 BX LR
我应该改变什么?