forked from cores/microwatt
Compare commits
24 Commits
icache-unu
...
master
Author | SHA1 | Date |
---|---|---|
Paul Mackerras | 35e0dbed34 | 2 years ago |
Michael Neuling | cd52390bf1 | 2 years ago |
Michael Neuling | b983d5080e | 2 years ago |
Michael Neuling | d4db331467 | 2 years ago |
Michael Neuling | ee5e3778ed | 2 years ago |
Michael Neuling | c43692f4c7 | 2 years ago |
Michael Neuling | 956df2c863 | 2 years ago |
Michael Neuling | 3627f102db | 2 years ago |
Paul Mackerras | 6e1e763c02 | 2 years ago |
Anton Blanchard | 1047239a37 | 2 years ago |
Anton Blanchard | 9d35340bb1 | 2 years ago |
Michael Neuling | b82eea5933 | 2 years ago |
Anton Blanchard | d3aff67fa7 | 2 years ago |
Anton Blanchard | b47b71821e | 2 years ago |
Anton Blanchard | 71d4b5ed20 | 2 years ago |
Anton Blanchard | e7f0a7c7ac | 2 years ago |
Anton Blanchard | 39220be311 | 2 years ago |
Anton Blanchard | 843361f2be | 2 years ago |
Anton Blanchard | d3a7517318 | 2 years ago |
Anton Blanchard | f06abb67ad | 2 years ago |
Anton Blanchard | ff442d1bdb | 2 years ago |
Joel Stanley | 9ec22af256 | 2 years ago |
Joel Stanley | a31725d989 | 2 years ago |
Tianrui Wei | 844ca0e6b5 | 3 years ago |
Binary file not shown.
Binary file not shown.
@ -1,13 +1,27 @@
|
|||||||
SECTIONS
|
SECTIONS
|
||||||
{
|
{
|
||||||
_start = .;
|
|
||||||
. = 0;
|
. = 0;
|
||||||
|
_start = .;
|
||||||
.head : {
|
.head : {
|
||||||
KEEP(*(.head))
|
KEEP(*(.head))
|
||||||
}
|
}
|
||||||
. = 0x1000;
|
. = 0x1000;
|
||||||
.text : { *(.text) }
|
.text : { *(.text) *(.text.*) *(.rodata) *(.rodata.*) }
|
||||||
. = 0x1800;
|
. = 0x1800;
|
||||||
.data : { *(.data) }
|
.data : { *(.data) *(.data.*) *(.got) *(.toc) }
|
||||||
.bss : { *(.bss) }
|
. = ALIGN(0x80);
|
||||||
|
__bss_start = .;
|
||||||
|
.bss : {
|
||||||
|
*(.dynsbss)
|
||||||
|
*(.sbss)
|
||||||
|
*(.scommon)
|
||||||
|
*(.dynbss)
|
||||||
|
*(.bss)
|
||||||
|
*(.common)
|
||||||
|
*(.bss.*)
|
||||||
|
}
|
||||||
|
. = ALIGN(0x80);
|
||||||
|
__bss_end = .;
|
||||||
|
. = . + 0x2000;
|
||||||
|
__stack_top = .;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue