reduce stack size on Zero because of limited RAM

pull/1092/head
Steven Cooreman 2015-05-05 12:35:20 -05:00
parent 9c79869f8a
commit 155a897111
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@
; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
; </h>
Stack_Size EQU 0x00000400
Stack_Size EQU 0x00000200
AREA STACK, NOINIT, READWRITE, ALIGN=3
Stack_Mem SPACE Stack_Size

View File

@ -37,7 +37,7 @@
#ifdef __STACK_SIZE
.equ Stack_Size, __STACK_SIZE
#else
.equ Stack_Size, 0x400
.equ Stack_Size, 0x200
#endif
.globl __StackTop
.globl __StackLimit