From 518437552588225dbf75435fddc3d2fb3f8a795f Mon Sep 17 00:00:00 2001 From: Tat-Chee Wan (USM) Date: Fri, 12 Aug 2011 08:25:07 +0800 Subject: enabled armdebug abort handling vectors --- AT91SAM7S256/SAM7S256/Include/Cstartup.S | 6 ++++-- 1 file 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 -- cgit v1.2.3