您的位置 首页 软件

avr单片机LED灯循环位移汇编程序

本程序中使用的avr单片机是m16芯片,可以让8个led实现循环移位的效果**loopLEDLightasm**Created:20143149:47:20*Author:W

本程序中运用的avr单片机是m16芯片,能够让8个led完成循环移位的作用/*

* loopLEDLight.asm
*
* Created: 2014/3/14 9:47:20
* Author: Wujie
*/

.include”m16def.inc”
.deftemp1=r20
.defcount=r17

.org$0000
rjmpmain
.org$002A
main:
ldir16,high(RAMEND)
outsph,r16
ldir16,low(RAMEND)
outspl,r16
sertemp1
outddrc,temp1
outportc,temp1
ldicount,0b01111111
ldir16,197

loop:
outportc,count
rcalldelay
rcallloopdis
rjmploop
;循环位移
loopdis:
ldir21,7;r21装入当即数7,后边或将count右移7位
pushcount;将count保存起来后边会运用
lslcount;将count左移一位
movr18,count;左位移一的当即数装入r18
popcount;复原count
dis:lsrcount;右位移7次count值改变为右移7次的值
decr21
brnedis
orcount,r18;左移一次与右移7次进行求或 即左循环一次
ret

delay:pushr16
del3:pushr16
del2: push r16
del1:decr16
brne del1
popr16
decr16
brne del2
popr16
decr16
brnedel3
popr16
ret
/*寄存器与寄存器直接的传递运用mov*/

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/qianrushi/ruanjian/317084.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部