DAY58

.text
.globl _start

_start:
	
	mov r1,#0x1
	mov r2,#0x1
	
step1:
	bl step2
	cmp r2,#0x64
	addls r1,r1,r2
	bl step1
	
	blhi stop
	
stop:
	b stop
	
step2:
	add r2,#0x1
	mov pc,lr
	
.end
	
	

你可能感兴趣的:(汇编)