2015-05-30 12:52:54 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Freie Universität Berlin
|
2014-04-17 19:36:12 +02:00
|
|
|
*
|
2015-05-30 12:52:54 +02:00
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2018-06-01 12:25:00 +02:00
|
|
|
* @addtogroup cpu_sam3
|
2015-05-30 12:52:54 +02:00
|
|
|
* @{
|
2014-04-17 19:36:12 +02:00
|
|
|
*
|
2015-05-30 12:52:54 +02:00
|
|
|
* @file
|
|
|
|
* @brief Memory definitions for the SAM3X8E
|
2014-04-17 19:36:12 +02:00
|
|
|
*
|
2015-05-30 12:52:54 +02:00
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
2014-04-17 19:36:12 +02:00
|
|
|
*
|
2015-05-30 12:52:54 +02:00
|
|
|
* @}
|
2014-04-17 19:36:12 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
MEMORY
|
|
|
|
{
|
2015-05-30 12:52:54 +02:00
|
|
|
rom (rx) : ORIGIN = 0x00080000, LENGTH = 512K
|
2018-05-06 07:48:43 +02:00
|
|
|
ram (w!rx) : ORIGIN = 0x20070000, LENGTH = 96K
|
2014-04-17 19:36:12 +02:00
|
|
|
}
|
|
|
|
|
2015-05-30 12:52:54 +02:00
|
|
|
INCLUDE cortexm_base.ld
|