summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/calypso/calypso_head.S
blob: eb83b68516f261043edeb713474cb864fda7b5d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Place a branch to the real head at the entry point */
.section .text.start
	b	__start


/* Exception Vectors like they are needed for the exception vector
   indirection of the internal boot ROM.  The following section must
   be liked to appear at 0x80001c */
.section .text.exceptions
_undef_instr:
	b	up_vectorundefinsn
_sw_interr:
	b	up_vectorswi
_prefetch_abort:
	b	up_vectorprefetch
_data_abort:
	b	up_vectordata
_reserved:
	b	_reserved
_irq:
	b	up_vectorirq
_fiq:
	b	up_vectorfiq