汇编实现1-100累加 代码.text .globl _start _start:mov r0,#0 @summationmov r1,#0 @autoIncrementbl funadd funadd:cmp r1,#100addccs r0,r1,r0addccs r1,r1,#1mov pc,lr stop:b stop .end 运行效果