aboutsummaryrefslogtreecommitdiff
path: root/AT91SAM7S256
diff options
context:
space:
mode:
authorTat-Chee Wan (USM)2011-08-12 08:25:07 +0800
committerTat-Chee Wan (USM)2011-08-12 08:25:07 +0800
commit518437552588225dbf75435fddc3d2fb3f8a795f (patch)
tree604ed7584dc67f153b84717364c17fb53ce03430 /AT91SAM7S256
parent025b1d8a6ba267ba08a2ec929f408c4c6c576b34 (diff)
enabled armdebug abort handling vectors
Diffstat (limited to 'AT91SAM7S256')
-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