31 lines
725 B
Plaintext
31 lines
725 B
Plaintext
/*
|
|
* Copyright (c) 2016 Synopsys, Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @brief Linker script for the Synopsys EM Starterkit v2.2 EM9D platform.
|
|
*/
|
|
|
|
/*
|
|
* ICCM base address and size
|
|
*
|
|
* ICCM includes the exception vector table at reset, which is at
|
|
* the beginning of the region.
|
|
*/
|
|
|
|
/* Instruction Closely Coupled Memory (ICCM) base address and size */
|
|
#define ICCM_START CONFIG_ICCM_BASE_ADDRESS
|
|
#define ICCM_SIZE CONFIG_ICCM_SIZE
|
|
|
|
/*
|
|
* DCCM base address and size. DCCM is the data memory.
|
|
*/
|
|
/* Data Closely Coupled Memory (DCCM) base address and size */
|
|
#define DCCM_START CONFIG_DCCM_BASE_ADDRESS
|
|
#define DCCM_SIZE CONFIG_DCCM_SIZE
|
|
|
|
#include <arch/arc/v2/linker.ld>
|
|
|