mclrreset.asm
来自「Alarm clock with PIC microcontroller」· 汇编 代码 · 共 34 行
ASM
34 行
;==============================================================================
; MCLR Reset (Default)
;------------------------------------------------------------------------------
; Notes:
;
; If no MCLR 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-29 AJ Initial version
;------------------------------------------------------------------------------
include ../pic.inc
errorlevel -312
global MCLRReset
extern PowerOnReset
;==============================================================================
; The default behaviour for a MCLR reset is simply to treat it the same as a
; power on reset.
code
MCLRReset:
lgoto PowerOnReset
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?