The new preprocessed version of this file allows us to use #defines

and macros, and we now take advantage of that to set DRAM size.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3346 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2003-02-26 09:18:13 +00:00
parent ae03eec5db
commit a0086b61e1

View file

@ -2,9 +2,11 @@ ENTRY(start)
OUTPUT_FORMAT(elf32-sh)
INPUT(crt0.o)
#define DRAMSIZE (MEMORYSIZE * 0x100000)
MEMORY
{
DRAM : ORIGIN = 0x09000000, LENGTH = 0x200000
DRAM : ORIGIN = 0x09000000, LENGTH = DRAMSIZE
IRAM : ORIGIN = 0x0f000000, LENGTH = 0x1000
}