2015-05-30 12:52:54 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Freie Universität Berlin
|
2014-07-30 14:59:14 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup cpu_nrf51822
|
|
|
|
* @{
|
2014-07-30 14:59:14 +02:00
|
|
|
*
|
2015-05-30 12:52:54 +02:00
|
|
|
* @file
|
2015-06-15 23:02:16 +02:00
|
|
|
* @brief Memory definitions for the NRF51X22XXAA
|
2014-07-30 14:59:14 +02:00
|
|
|
*
|
2015-05-30 12:52:54 +02:00
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
2014-07-30 14:59:14 +02:00
|
|
|
*
|
2015-05-30 12:52:54 +02:00
|
|
|
* @}
|
2014-07-30 14:59:14 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
MEMORY
|
|
|
|
{
|
2014-08-05 00:51:52 +02:00
|
|
|
rom (rx) : ORIGIN = 0x00000000, LENGTH = 256K
|
2018-05-06 07:48:43 +02:00
|
|
|
ram (w!rx) : ORIGIN = 0x20000000, LENGTH = 16K
|
2014-07-30 14:59:14 +02:00
|
|
|
}
|
|
|
|
|
2015-05-30 12:52:54 +02:00
|
|
|
INCLUDE cortexm_base.ld
|