Where Vector Table resides in STMF0 devies
I am asking this because when referring to the Reference Manual I see that the vector table resides at addresses 0x0000 0000 to 0x0000 00BC:

and the end of the table:

But if I go the the linker script file I see that the vector table is actually located at the flash memory section:
/* Specify the memory areas */
MEMORY{RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 4KFLASH (rx) : ORIGIN = 0x8000000, LENGTH = 32K}/* Define output sections */
SECTIONS{/* The startup code goes first into FLASH */
.isr_vector : { . = ALIGN(4); KEEP(*(.isr_vector)) /* Startup code */ . = ALIGN(4); } >FLASH........
........
What am I missing? The document says that it starts from address 0x0, while the Linker Script file says it starts at the first flash section address address.