找回密码
 注册会员
更新自动建库工具PCB Footprint Expert 2024.04 Pro / Library Expert 破解版

[音频电路] 最简单的八路跑马灯电路图

[复制链接]
admin 发表于 2013-1-4 20:25:31 | 显示全部楼层 |阅读模式

本文包含原理图、PCB、源代码、封装库、中英文PDF等资源

您需要 登录 才可以下载或查看,没有账号?注册会员

×
2012112004270419149112.gif
   2012112004270423836113.gif  
    本例实验主要用到了延时子程序,clr,lcall,ajmp 指令, 通过轮流点亮p1.0 …..P1.7 实现效果。
  参考程序:
    ;实验1最简单的8路跑马灯。用一条8PIN的数据排线进入CPU部份的P1口(JP44)连接到八路指示灯部份的JP32
    ;可以看到8路灯轮流闪烁
    org 0000h ;开始
    ajmp loop
    org 0030h ;到0030h处避开00-30的敏感地址
    loop:
    mov p1,#0ffh;关闭所有灯
    clr p1.0 ;点亮灯p1.0
    lcall delay ;延时一段时间?
    clr p1.1 ;点亮灯p1.1
    lcall delay
    clr p1.2 ;点亮灯p1.2
    lcall delay
    clr p1.3 ;点亮灯p1.3
    lcall delay
    clr p1.4 ;点亮灯p1.4
    lcall delay
    clr p1.5 ;点亮灯p1.5
    lcall delay
    clr p1.6 ;点亮灯p1.6
    lcall delay
    clr p1.7 ;点亮灯p1.7
    lcall delay
    AJMP LOOP;到最开始loop处重新运行

    d1: mov r6,#40
    d2: mov r7,#248
    djnz r7,$
    djnz r6,d2
    djnz r5,d1
    ret
    end
*滑块验证:
您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

QQ|手机版|MCU资讯论坛 ( 京ICP备18035221号-2 )|网站地图

GMT+8, 2024-11-25 01:49 , Processed in 0.057816 second(s), 13 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表