pic10f200的一段玩具代码

发布者:devilcore最新更新时间:2020-03-29 来源: eefocus关键字:pic10f200  玩具代码 手机看文章 扫描二维码
随时随地手机看文章

title "PIC10F202 counting program"

 list p=10f202

 #include ;


 __CONFIG _CP_OFF & _MCLRE_OFF & _WDT_OFF & _IntRC_OSC


cpt1 equ 0x08

cpt2 equ 0x09

cpt3 equ 0x0A


 org 00h ;reset vector

 andlw 0xfe

 movwf OSCCAL

 clrf GPIO

 movlw 0x0b

 tris GPIO

 movlw 0xc0

 option


IncCount

 call Delay1s

 btfsc GPIO,2

 goto next

 bsf GPIO,2

 goto IncCount

next

 bcf GPIO,2

 goto IncCount ;loop


;------------------------------------------------

Delay1ms   ;2us for CALL

 movlw 0xF9

 movwf cpt1 ;2us

etiq2

 nop    ;loop=4us*(0xF9=249)=996us

 decfsz cpt1,F

 goto etiq2

 retlw 0x00


;------------------------------------------------

Delay1s

 movlw 0x0A

 movwf cpt3

etiq4

 movlw 0x64

 movwf cpt2

etiq3

 call Delay1ms

 decfsz cpt2,F

 goto etiq3

 decfsz cpt3,F

 goto etiq4

 retlw 0x00


 end

关键字:pic10f200  玩具代码 引用地址:pic10f200的一段玩具代码

上一篇:让你的MPLAB IDE爽起来---MPLAB IDE一些隐藏的功能
下一篇:MPLAB X IDE -1:如何反汇编PIC的二进制代码

小广播
设计资源 培训 开发板 精华推荐

最新单片机文章
何立民专栏 单片机及嵌入式宝典

北京航空航天大学教授,20余年来致力于单片机与嵌入式系统推广工作。

换一换 更多 相关热搜器件
随便看看

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved