OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /openrisc/trunk/orpsocv2/sw/drivers
    from Rev 425 to Rev 439
    Reverse comparison

Rev 425 → Rev 439

/or1200/link.ld
9,13 → 9,10
}
 
 
/*
* Allocate the stack to be at the top of memory, since the stack
* grows down.
*/
PROVIDE (stack = 128K - 4);
PROVIDE (_stack = 128K - 4);
/* Stack information variables */
_min_stack = 0x2000; /* 8K - minimum stack space to reserve */
 
 
SECTIONS
{
.vectors :
77,8 → 74,21
__end = ALIGN(0x8);
ebss = .;
_ebss = .;
}
} > ram
/* ensure there is enough room for stack */
.stack (NOLOAD): {
. = ALIGN(4);
sstack = . ;
_sstack = . ;
. = . + _min_stack ;
. = ALIGN(4);
stack = . ;
_stack = . ;
estack = . ;
_estack = . ;
} > ram
.stab 0 (NOLOAD) :
{
[ .stab ]

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.