bsp_eeprom_int.s

来自「最新版IAR FOR ARM(EWARM)5.11中的代码例子」· S 代码 · 共 55 行

S
55
字号
;------------------------------------------------------------------------------
;   EUROPE TECHNOLOGIES Software Support
;------------------------------------------------------------------------------
; The software is delivered "AS IS" without warranty or condition of any
; kind, either express, implied or statutory. This includes without
; limitation any warranty or condition with respect to merchantability or
; fitness for any particular purpose, or against the infringements of
; intellectual property rights of others.
;------------------------------------------------------------------------------
;
; File Name       : bsp_eeprom_int.s (hardware dependent)
; Description     : Function declarations for EEPROM Interrupt Handler
; Library Version : 1.00
;
;       +----- (NEW | MODify | ADD | DELete)                                 
;       |                                                                    
;  No   |   When       Who                What               
;-----+---+----------+------------------+--------------------------------------
; 000  NEW  06/12/99   Patrice Vilchez    Creation 
; 001  MOD  25/03/02   Christophe GARDIN  Clean up
;------------------------------------------------------------------------------

;******************************************************************************
;* AREA Definition
;******************************************************************************
   AREA INTERRUPT, CODE, READONLY
   CODE32
  

;******************************************************************************
;* Include Directive
;******************************************************************************
   INCLUDE ../../CSP/asm/csp_arm.inc
   INCLUDE ../../CSP/asm/csp_gic.inc


;******************************************************************************
;* Export/Import Directive
;******************************************************************************
   IMPORT  BSP_EEPROM_InterruptHandler    ; C Interrupt Handler
   EXPORT  ASM_EEPROM_InterruptHandler    ; Assembler Interrupt Handler


;******************************************************************************
;* EEPROM Handler
;******************************************************************************
ASM_EEPROM_InterruptHandler
   IRQ_ENTRY  
   BL    BSP_EEPROM_InterruptHandler 
   IRQ_EXIT

;******************************************************************************
   END

⌨️ 快捷键说明

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