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 アセンブリでは、2 つの数値のうち小さい方を見つけたいと考えています。数値は 32 ビット値で署名されます。これが私が試したことです-
.global min32 .text min: CMP R0,R1 BGE end BX LR end: MOV R0, R1 BX LR
これで何を変更すればよいですか?