cmx_dio_chan.asm

来自「cypress cy3721做的外部无线结点。感知温度后将温度值反给中心结点。」· 汇编 代码 · 共 49 行

ASM
49
字号
;;*****************************************************************************
;;*****************************************************************************
;;  FILENAME: cmx_dio_chan.asm
;;   Version: 1.0.0
;;
;;  DESCRIPTION:
;;    Digital Input Output algorithms.
;;
;;-----------------------------------------------------------------------------
;;  Copyright (c) Cypress MicroSystems 2004. All Rights Reserved.
;;*****************************************************************************
;;  HISTORY:
;;
;;*****************************************************************************
include "m8c.inc"
include "memory.inc"

;-----------------------------------------------
;  Global Symbols
;-----------------------------------------------
export  _DIOChannelPins
export   DIOChannelPins

;-----------------------------------------------
;  Function Prototypes
;-----------------------------------------------

;-----------------------------------------------
;  Constant Definitions
;-----------------------------------------------
area text(ROM,REL)
.literal

_DIOChannelPins:
 DIOChannelPins:
    db 12h
    db 13h
    db 14h
.endliteral

;-----------------------------------------------
; Variable Allocation
;-----------------------------------------------
AREA InterruptRAM (RAM, REL, CON)

 
area    text(ROM,REL)
; End of File DIO_LLD.asm

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?