?? time_rtc_irq.mac
字號(hào):
#------------------------------------------------------------------------------
#- ATMEL Microcontroller Software Support - ROUSSET -
#------------------------------------------------------------------------------
# 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 source : time_rtc_irq.mac
#- Object : Assembler RTC Interrupt Handler Definition Macro.
#-
#- 1.0 11/09/00 JPP : Creation
#- 1.1 02/11/00 JPP : Green Hills
#------------------------------------------------------------------------------
# AREA AT91Lib, CODE, READONLY, INTERWORK
.INCLUDE "../../periph/aic/irq.mac"
.MACRO AT91_RTC_ASM_HANDLER handler_name, rtc1
.EXTERN at91_time_rtc_c_handler
.EXTERN rtc1
.GLOBAL handler_name
handler_name:
IRQ_ENTRY
ldr r1, =at91_time_rtc_c_handler
ldr r0, =rtc1
mov r14, pc
bx r1
IRQ_EXIT
.ENDM
# END
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -