Files
chipyard/bootrom/linker.ld
2017-05-25 12:55:52 -07:00

10 lines
197 B
Plaintext

SECTIONS
{
ROM_BASE = 0x10000; /* ... but actually position independent */
. = ROM_BASE;
.text.start : { *(.text.start) }
. = ROM_BASE + 0x40;
.text.hang : { *(.text.hang) }
}