mirror of
https://github.com/YosysHQ/picorv32.git
synced 2025-04-20 03:47:42 -04:00
11 lines
105 B
Text
11 lines
105 B
Text
SECTIONS {
|
|
.memory : {
|
|
. = 0x000000;
|
|
*(.init);
|
|
*(.text);
|
|
*(*);
|
|
. = ALIGN(4);
|
|
end = .;
|
|
}
|
|
}
|
|
|