watchdogreset.asm

来自「Alarm clock with PIC microcontroller」· 汇编 代码 · 共 34 行

ASM
34
字号
;==============================================================================
; WatchDog Timer Reset (Default)
;------------------------------------------------------------------------------

; Notes:
;
; If no watchdog timer reset entry point is provided in the main application
; objects then this module will be used to provide a default implementation.

;==============================================================================
; Revision History:
;
; 2004-12-27 AJ Initial version
;------------------------------------------------------------------------------

                include ../pic.inc

                errorlevel -312

                global  WatchDogReset

                extern  PowerOnReset

;==============================================================================

; The default behaviour for a watchdog timer reset is simply to treat it the
; same as a power on reset.

                code
WatchDogReset:
                lgoto   PowerOnReset

                end

⌨️ 快捷键说明

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