mirror of https://github.com/YosysHQ/picorv32.git
10 lines
93 B
Plaintext
10 lines
93 B
Plaintext
|
SECTIONS {
|
||
|
.memory : {
|
||
|
. = 0x000000;
|
||
|
start*(.text);
|
||
|
*(.text);
|
||
|
*(*);
|
||
|
end = .;
|
||
|
}
|
||
|
}
|