Dear expert,
I have a hardware reset vector rstvectors and an os exeption vector LOW_EXCEPTION_0 as follow, assiged to the SARM and ATCM respectively. Now I sucess to use the rstvectors to start up the system. But I want to use the LOW_EXCEPTION_0 to process exeprions then. How should i do? Thanks.
.sect ".rstvectors"
_resetvectors:
.asmfunc
LDR pc, c_int00_addr ; Reset
LDR pc, undefInst_addr ; Undefined Instruction
LDR pc, swi_addr ; Software interrupt
LDR pc, preAbort_addr ; Abort (prefetch)
LDR pc, dataAbort_addr ; Abort (data)
LDR pc, rsvd_addr ; rsvd
LDR pc, irq_addr ; IRQ
LDR pc, fiq_addr ; FIQ
.endasmfunc