Modify RAM size definition of ARMCC for GR-LYCHEE

I modified RAM size of ARMCC compiler for GR-LYCHEE.
In case of GR-LYCHEE, RAM size is 3M Byte(including Non-Cache area), but there was a typo at MACRO definition.
pull/7311/head
TomoYamanaka 2018-06-25 15:44:01 +09:00
parent 8e170ccbd1
commit 36ad12c403
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@
/*--------------------- RAM Configuration -----------------------------------
*----------------------------------------------------------------------------*/
#define __RAM_BASE 0x20000000
#define __RAM_SIZE 0x00200000
#define __RAM_SIZE 0x00300000
#define __NC_RAM_SIZE 0x00100000
#define __NM_RAM_SIZE (__RAM_SIZE - __NC_RAM_SIZE)
#define __DATA_NC_BASE (__RAM_BASE + __NM_RAM_SIZE + 0x40000000)