mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-22 05:07:21 -04:00
11 lines
259 B
Text
11 lines
259 B
Text
SECTIONS
|
|
{
|
|
ROM_BASE = 0x10000; /* ... but actually position independent */
|
|
|
|
. = ROM_BASE;
|
|
.text.start : { *(.text.start) }
|
|
. = ROM_BASE + 0x40;
|
|
.text.hang : { *(.text.hang) }
|
|
. = ROM_BASE + 0x80;
|
|
.rodata.dtb : { *(.rodata.dtb) }
|
|
}
|