Add operand.c to the link script

This commit is contained in:
Hansung Kim
2024-08-19 18:09:16 -07:00
parent 64e48de8af
commit 68eb271916

View File

@@ -13,6 +13,7 @@ MEMORY {
DRAMARG (rwx): ORIGIN = 0x9fff0000, LENGTH = 8K DRAMARG (rwx): ORIGIN = 0x9fff0000, LENGTH = 8K
DRAM1 (rwx): ORIGIN = 0xa0000000, LENGTH = 16M DRAM1 (rwx): ORIGIN = 0xa0000000, LENGTH = 16M
DRAM2 (rwx): ORIGIN = 0xa1000000, LENGTH = 16M DRAM2 (rwx): ORIGIN = 0xa1000000, LENGTH = 16M
DRAM3 (rwx): ORIGIN = 0xa2000000, LENGTH = 16M
} }
SECTIONS SECTIONS
@@ -288,4 +289,8 @@ SECTIONS
*(.operand.b) *(.operand.b)
. += 32K; . += 32K;
}> DRAM2 }> DRAM2
.operand.c : {
*(.operand.c)
. += 32K;
}> DRAM3
} }