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