Hi
My memory map looks like this:
//-----------------------------------------------------------------------------------------------
#define FLASH_STANDARD_BASE 0x00000000L
#define FLASH_SIZE_HUGE_X 0x01000000L /* 16MB
#define SRAM_STANDARD_BASE 0x55000000L
#define SRAM_SIZE_HUGE 0x00400000L /* 4MB
#define FRAM_STANDARD_BASE 0xAA000000L /*4KB
#define CS_2_7_BASE 0xFF000000L /*
//-----------------------------------------------------------------------------------------------
I would like to change the 4MB SRAM to16 MB.
and I would define "SRAM_SIZE_MORE_HUGE 0x01000000L /* 16MB */"
Can you se anything wrong in this ?
Christian..