mirror of
https://github.com/saymrwulf/pulp-runtime.git
synced 2026-06-11 00:49:37 +00:00
Referencing to ORIGIN(L2) in .vectors and .l2_data sections.
This commit is contained in:
parent
45de393f94
commit
96a6336e8a
1 changed files with 2 additions and 2 deletions
|
|
@ -178,7 +178,7 @@ SECTIONS
|
|||
* Contains FC code
|
||||
*/
|
||||
|
||||
.vectors MAX(0x78008000,ALIGN(256)) :
|
||||
.vectors MAX(ORIGIN(L2)+0x8000,ALIGN(256)) :
|
||||
{
|
||||
/*. = ALIGN(256);*/
|
||||
__irq_vector_base = .;
|
||||
|
|
@ -207,7 +207,7 @@ SECTIONS
|
|||
* Contains other data such as peripheral data and cluster code and data
|
||||
*/
|
||||
|
||||
.l2_data MAX(0x78010000,ALIGN(4)) :
|
||||
.l2_data MAX(ORIGIN(L2)+0x10000,ALIGN(4)) :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
__cluster_text_start = .;
|
||||
|
|
|
|||
Loading…
Reference in a new issue