mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-01-13 23:26:59 +00:00
When building with yosys we assume hello_world fits in 8kB. There's enough free space that we can adjust the linker script to make it fit. Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
14 lines
156 B
Plaintext
14 lines
156 B
Plaintext
SECTIONS
|
|
{
|
|
_start = .;
|
|
. = 0;
|
|
.head : {
|
|
KEEP(*(.head))
|
|
}
|
|
. = 0x1000;
|
|
.text : { *(.text) }
|
|
. = 0x1800;
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) }
|
|
}
|