📄 watchdogreset.asm
字号:
;==============================================================================
; 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -