1
0
mirror of https://github.com/elua/elua.git synced 2025-01-25 01:02:54 +08:00
This commit is contained in:
James Snyder 2011-03-17 14:59:39 -05:00
commit 5aa2558cc3
2 changed files with 1 additions and 3 deletions

View File

@ -135,8 +135,6 @@
// Allocator data: define your free memory zones here in two arrays
// (start address and end address)
// On Mizar32, we just use the 32MB SDRAM without trying to use the 8K that is
// free in the onboard 32KB RAM, thereby simplifying the memory management.
#define MEM_START_ADDRESS { ( void* )end, ( void* )SDRAM }
#define MEM_END_ADDRESS { ( void* )( 0x8000 - STACK_SIZE_TOTAL - 1 ), ( void* )( SDRAM + SDRAM_SIZE - 1 ) }

View File

@ -3,7 +3,7 @@
#ifndef __STACKS_H__
#define __STACKS_H__
#define STACK_SIZE 2048
#define STACK_SIZE 8192
#define STACK_SIZE_TOTAL ( STACK_SIZE )
#endif