一、思维导图
二、
bash
.text @文本段
.globl _start @ 声明
_start:
mov r0,#0
mov r1,#0
fun:
cmp r1,#100
bhi stop
add r0,r0,r1
add r1,r1,#1
b fun
stop:
b stop
.end