comparison gsm-fw/sysglue/sysinit.S @ 312:f05ae34f7ca0

gsm-fw: ARM exception vectors hooked in
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 17 Mar 2014 07:37:28 +0000
parents afceeeb2cba1
children e201f2130c9b
comparison
equal deleted inserted replaced
311:a2194416fd7c 312:f05ae34f7ca0
4 * to both the regular flashable build and the fc-xram development build. 4 * to both the regular flashable build and the fc-xram development build.
5 */ 5 */
6 6
7 .section iram.vectors,"ax",%progbits 7 .section iram.vectors,"ax",%progbits
8 .code 32 8 .code 32
9 /* no useful handlers for the 5 error exceptions yet */ 9 /* ARM exceptions */
10 b . 10 b _arm_undefined
11 b . 11 b _arm_swi
12 b . 12 b _arm_abort_prefetch
13 b . 13 b _arm_abort_data
14 b . 14 b _arm_reserved
15 /* IRQ */ 15 /* IRQ */
16 b _INT_IRQ 16 b _INT_IRQ
17 /* FIQ */ 17 /* FIQ */
18 b _INT_FIQ 18 b _INT_FIQ
19 19