URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Go to most recent revision |
Show entire file |
Details |
Blame |
View Log
Rev 439 |
Rev 475 |
Line 59... |
Line 59... |
*(.data)
|
*(.data)
|
edata = .;
|
edata = .;
|
_edata = .;
|
_edata = .;
|
} > ram
|
} > ram
|
|
|
.bss SIZEOF(.data) + ADDR(.data) :
|
.bss :
|
{
|
{
|
sbss = . ;
|
_bss_start = .;
|
_sbss = . ;
|
|
__bss_start = ALIGN(0x8);
|
|
___bss_start = ALIGN(0x8);
|
|
*(.bss)
|
*(.bss)
|
*(COMMON)
|
*(COMMON)
|
end = ALIGN(0x8);
|
_bss_end = .;
|
_end = ALIGN(0x8);
|
|
__end = ALIGN(0x8);
|
|
ebss = .;
|
|
_ebss = .;
|
|
} > ram
|
} > ram
|
|
|
/* ensure there is enough room for stack */
|
/* ensure there is enough room for stack */
|
.stack (NOLOAD): {
|
.stack (NOLOAD): {
|
. = ALIGN(4);
|
. = ALIGN(4);
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.