我在RM手册中看到使用XIP启动时,ROM使用IVT结构体中的entry: Absolute address of the first instruction to execute from the image字段中设置的地址作为第一条指令执行,但是我查看了任意一个Demo工程,发现默认的IVT地址为0x_6000_02000,其中存储的数据为0x20020000,根据链接脚本可以得知该地址为栈顶地址
/* MAIN TEXT SECTION */
.text : ALIGN(4)
{
FILL(0xff)
__vectors_start__ = ABSOLUTE(.) ;
KEEP(*(.isr_vector))
/* Global Section Table */
. = ALIGN(4) ;
__section_table_start = .;
__data_section_table = .;