forked from M-Labs/artiq-zynq
runtime: adjust stack and heap sizes
This commit is contained in:
parent
7661b2a288
commit
8c0b7cdcf2
|
@ -59,21 +59,21 @@ SECTIONS
|
|||
.heap (NOLOAD) : ALIGN(8)
|
||||
{
|
||||
__heap_start = .;
|
||||
. += 0x8000000;
|
||||
. += 0x1000000;
|
||||
__heap_end = .;
|
||||
} > SDRAM
|
||||
|
||||
.stack1 (NOLOAD) : ALIGN(8)
|
||||
{
|
||||
__stack1_end = .;
|
||||
. += 0x8000000;
|
||||
. += 0x1000000;
|
||||
__stack1_start = .;
|
||||
} > SDRAM
|
||||
|
||||
.stack0 (NOLOAD) : ALIGN(8)
|
||||
{
|
||||
__stack0_end = .;
|
||||
. += 0x10000;
|
||||
. += 0x20000;
|
||||
__stack0_start = .;
|
||||
} > SDRAM
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue