1
0
Fork 0
mirror of https://github.com/YosysHQ/picorv32.git synced 2025-01-03 03:43:38 -05:00
picorv32/scripts/presyn/firmware.lds
2017-02-09 15:15:46 +01:00

11 lines
105 B
Text

SECTIONS {
.memory : {
. = 0x000000;
*(.init);
*(.text);
*(*);
. = ALIGN(4);
end = .;
}
}