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