首页|嵌入式系统|显示技术|模拟IC/电源|元件与制造|其他IC/制程|消费类电子|无线/通信|汽车电子|工业控制|医疗电子|测试测量
首页 > 分享下载 > 嵌入式系统 > PIC16C63串口通信程序

PIC16C63串口通信程序

资料介绍
PIC16C63串口通信程序

list      p=16c63           ; list directive to define processor
    #include         ; processor specific variable definitions
       
        __CONFIG _BODEN_OFF&_CP_OFF&_WRT_ENABLE_ON&_PWRTE_ON&_WDT_OFF&_XT_OS
C&_DEBUG_OFF&_CPD_OFF&_LVP_OFF

; ‘__CONFIG‘ directive is used to embed configuration data within .asm file.

; The lables following the directive are located in the respective .inc file
.
; See respective data sheet for additional information on configuration word
.

;***** VARIABLE DEFINITIONS
w_temp        EQU     0x20        ; variable used for context saving 
status_temp   EQU     0x21        ; variable used for context saving
Buffer1          EQU     0x22
Buffer2          EQU     0x23
             

;**************************************************************
PIC16C63串口通信程序
本地下载

评论