Hi,
The following piece of code is from a reference code provide online.
I would like to know the first line in the reset vector table below.
Address Description ======= =========== 0x0000 0000 Initial Stack Pointer (SP) value 0x0000 0004 Reset exception 0x0000 0008 NMI 0x0000 000C Hard fault 0x0000 0010 Memory management fault 0x0000 0014 Bus fault 0x0000 0018 Usage fault
Does the line "Initial Stack Pointer (SP) value" mean that there is a jump address at location 0x0000 0000 which properly configures the stack pointer?
done. thanks.