mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
29 lines
651 B
Plaintext
29 lines
651 B
Plaintext
|
/*
|
||
|
* Copyright (C) 2015-2017 Freie Universität Berlin
|
||
|
*
|
||
|
* 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_efr32mg1p
|
||
|
* @{
|
||
|
*
|
||
|
* @file
|
||
|
* @brief Memory definitions for the EFR32MG1P132F256GM48 CPU
|
||
|
*
|
||
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
||
|
* @author Bas Stottelaar <basstottelaar@gmail.com>
|
||
|
*
|
||
|
* @}
|
||
|
*/
|
||
|
|
||
|
MEMORY
|
||
|
{
|
||
|
rom (rx) : ORIGIN = 0x00000000, LENGTH = 262144
|
||
|
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 31744
|
||
|
}
|
||
|
|
||
|
INCLUDE cortexm_base.ld
|