Revert the stack size to what it was in the beginning, ie 1K. I had changed it to 2K while trying ot troubleshoot the va_args issues (which turned out to be the trap handler messing things up).
This commit is contained in:
parent
93f02bc99d
commit
441d7a0624
|
@ -1,6 +1,6 @@
|
|||
RAMSTART = 0x00020000;
|
||||
RAMSIZE = 0x00030000;
|
||||
STACKLEN = 0x800;
|
||||
STACKLEN = 0x400;
|
||||
HEAPSTART = 0x00100000;
|
||||
HEAPSIZE = 0x00020000;
|
||||
|
||||
|
|
Loading…
Reference in a new issue