mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-08 10:09:32 +08:00
fc2e959a42
An example of building an application: $ arc-elf32-gcc -mcpu=hs -specs=hsdk.specs main.c -o main Signed-off-by: Vladimir Isaev <vvisaev@gmail.com> Signed-off-by: Yuriy Kolerov <kolerov93@gmail.com>
14 lines
280 B
Plaintext
14 lines
280 B
Plaintext
/* Memory map for ARC HS Development Kit and ARC HS Development Kit 4xD */
|
|
|
|
MEMORY
|
|
{
|
|
DRAM : ORIGIN = 0x90000000, LENGTH = 0x50000000
|
|
}
|
|
|
|
REGION_ALIAS("startup", DRAM)
|
|
REGION_ALIAS("text", DRAM)
|
|
REGION_ALIAS("data", DRAM)
|
|
REGION_ALIAS("sdata", DRAM)
|
|
|
|
INCLUDE arcv2elf-common.ld
|