Skip to content

Commit 36ad12c

Browse files
committed
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.
1 parent 8e170cc commit 36ad12c

File tree

1 file changed

+1
-1
lines changed
  • targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/device/TOOLCHAIN_ARM_STD

1 file changed

+1
-1
lines changed

targets/TARGET_RENESAS/TARGET_RZ_A1XX/TARGET_GR_LYCHEE/device/TOOLCHAIN_ARM_STD/mem_RZ_A1LU.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
/*--------------------- RAM Configuration -----------------------------------
4747
*----------------------------------------------------------------------------*/
4848
#define __RAM_BASE 0x20000000
49-
#define __RAM_SIZE 0x00200000
49+
#define __RAM_SIZE 0x00300000
5050
#define __NC_RAM_SIZE 0x00100000
5151
#define __NM_RAM_SIZE (__RAM_SIZE - __NC_RAM_SIZE)
5252
#define __DATA_NC_BASE (__RAM_BASE + __NM_RAM_SIZE + 0x40000000)

0 commit comments

Comments
 (0)