brownoutreset.asm

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

ASM
34
字号
;==============================================================================
; Brown Out Reset Handler (Default)
;------------------------------------------------------------------------------

; Notes:
;
; If no brown out 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  BrownOutReset

                extern  PowerOnReset

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

                code

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

BrownOutReset   lgoto   PowerOnReset

                end

⌨️ 快捷键说明

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