![Texas Instruments SimpleLink Ethernet MSP432E401Y Technical Reference Manual Download Page 109](http://html1.mh-extra.com/html/texas-instruments/simplelink-ethernet-msp432e401y/simplelink-ethernet-msp432e401y_technical-reference-manual_1095578109.webp)
Initial SP value
Reset
Hard fault
NMI
Memory management fault
Usage fault
Bus fault
0x0000
0x0004
0x0008
0x000C
0x0010
0x0014
0x0018
Reserved
SVCall
PendSV
Reserved for Debug
Systick
IRQ0
Reserved
0x002C
0x0038
0x003C
0x0040
Offset
Exception number
2
3
4
5
6
11
12
14
15
16
18
13
7
10
1
Vector
.
.
.
8
9
IRQ1
IRQ2
0x0044
IRQ N
17
0x0048
0x004C
.
.
.
.
.
.
IRQ number
-14
-13
-12
-11
-10
-5
-2
-1
0
2
1
(N)
0
(N+16)
0x040
+ 0x(N*4)
Exception Model
109
SLAU723A – October 2017 – Revised October 2018
Copyright © 2017–2018, Texas Instruments Incorporated
Cortex
®
-M4F Processor
Figure 1-16. Vector Table
On system reset, the vector table is fixed at address 0x0000.0000. Privileged software can write to the
Vector Table Offset (VTABLE) register to relocate the vector table start address to a different memory
location, in the range 0x0000.0400 to 0x3FFF.FC00 (see
). When configuring the VTABLE
register, the offset must be aligned on a 1024-byte boundary.
1.6.5 Exception Priorities
As
shows, all exceptions have an associated priority, with a lower priority value indicating a
higher priority and configurable priorities for all exceptions except Reset, Hard fault, and NMI. If software
does not configure any priorities, then all exceptions with a configurable priority have a priority of 0. For
information about configuring exception priorities, see
and
NOTE:
Configurable priority values for the MSP432E4 implementation are in the range 0 to 7. This
means that the Reset, Hard Fault, and NMI exceptions (with fixed negative priority values)
always have higher priority than any other exception.
For example, assigning a higher priority value to IRQ[0] and a lower priority value to IRQ[1] means that
IRQ[1] has higher priority than IRQ[0]. If both IRQ[1] and IRQ[0] are asserted, IRQ[1] is processed before
IRQ[0].
If multiple pending exceptions have the same priority, the pending exception with the lowest exception
number takes precedence. For example, if both IRQ[0] and IRQ[1] are pending and have the same
priority, then IRQ[0] is processed before IRQ[1].