aboutsummaryrefslogtreecommitdiff
path: root/AT91SAM7S256/SAM7S256/Include/Cstartup.S
diff options
context:
space:
mode:
Diffstat (limited to 'AT91SAM7S256/SAM7S256/Include/Cstartup.S')
-rw-r--r--AT91SAM7S256/SAM7S256/Include/Cstartup.S6
1 files changed, 4 insertions, 2 deletions
diff --git a/AT91SAM7S256/SAM7S256/Include/Cstartup.S b/AT91SAM7S256/SAM7S256/Include/Cstartup.S
index af87159..d02cf3f 100644
--- a/AT91SAM7S256/SAM7S256/Include/Cstartup.S
+++ b/AT91SAM7S256/SAM7S256/Include/Cstartup.S
@@ -139,15 +139,17 @@ Reset_Addr: .word InitReset
Undef_Addr: .word undef_handler /* BKPT instruction trap */
SWI_Addr: .word SWI_Handler
/*SWI_Addr: .word SoftwareInterruptASM*/ /*in swi_handler.S */
-PAbt_Addr: .word PAbt_Handler
-DAbt_Addr: .word DAbt_Handler
+PAbt_Addr: .word prefetch_abort_handler
+DAbt_Addr: .word data_abort_handler
IRQ_Addr: .word IRQ_Handler_Entry
.global default_undef_handler
default_undef_handler:
Undef_Handler: B Undef_Handler
SWI_Handler: B SWI_Handler
+ .global default_prefetch_abort_handler
PAbt_Handler: B PAbt_Handler
+ .global default_data_abort_handler
DAbt_Handler: B DAbt_Handler