cmd1.asm

来自「DALI系统主控制器的软件代码」· 汇编 代码 · 共 39 行

ASM
39
字号



; *****************************************************************************
#include	p16f628.inc	; Standard include file
#include	instruct.inc	; Bring in complex instructions
#include	user_mac.inc	; Bring in application specific instructions
; *****************************************************************************


; *****************************************************************************
	EXTERN	Main
	EXTERN	BRIDGE_STATUS
; *****************************************************************************


; *****************************************************************************
BRIDGE_COMMANDS	CODE
; *****************************************************************************
ResetBridge
	goto	0x0000
	
	GLOBAL	ResetBridge
; *****************************************************************************


; *****************************************************************************
ReportStatus
	
	tx	BRIDGE_STATUS			; Send status bits to computer
	
	goto	Main

	GLOBAL	ReportStatus
; *****************************************************************************

	END

⌨️ 快捷键说明

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