虽然单片机做东西c语言为主,但有时候感觉汇编还是挺不错的,效率高多了,有时候感觉keil编译器生成的51汇编不一定高效
org 0000h
ajmp start
org 0030h
start:
mov r0,#20h
mov a,@r0
rl a
add a,#04h
mov dptr,#$
jmp @a+dptr
ajmp next0
ajmp next1
ajmp next2
ajmp next3
next0:
mov r1,#60h
mov a,@r1
ajmp endd
next1:
mov r1,#61h
mov a,@r1
ajmp endd
next2:
mov r1,#62h
mov a,@r1
ajmp endd
next3:
mov r1,#63h
mov a,@r1
ajmp endd
endd:
sjmp $
end
---贴吧极速版 For UWP
org 0000h
ajmp start
org 0030h
start:
mov r0,#20h
mov a,@r0
rl a
add a,#04h
mov dptr,#$
jmp @a+dptr
ajmp next0
ajmp next1
ajmp next2
ajmp next3
next0:
mov r1,#60h
mov a,@r1
ajmp endd
next1:
mov r1,#61h
mov a,@r1
ajmp endd
next2:
mov r1,#62h
mov a,@r1
ajmp endd
next3:
mov r1,#63h
mov a,@r1
ajmp endd
endd:
sjmp $
end
---贴吧极速版 For UWP