libopencm3/examples/stm32/f1/obldc/obldc.ld

32 lines
1.0 KiB
Plaintext
Raw Normal View History

2010-12-17 22:23:10 +00:00
/*
* This file is part of the libopencm3 project.
2010-12-17 22:23:10 +00:00
*
* Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
2010-12-17 22:23:10 +00:00
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
2010-12-17 22:23:10 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
2010-12-17 22:23:10 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library. If not, see <http://www.gnu.org/licenses/>.
2010-12-17 22:23:10 +00:00
*/
2010-12-20 18:52:51 +00:00
/* Linker script for Open-BLDC (STM32F103CBT6, 128K flash, 20K RAM). */
2010-12-17 22:23:10 +00:00
/* Define memory regions. */
MEMORY
{
rom (rx) : ORIGIN = 0x08000000, LENGTH = 128K
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K
}
2010-12-30 12:22:56 +00:00
/* Include the common ld script. */
2011-10-13 03:58:27 +00:00
INCLUDE libopencm3_stm32f1.ld
2010-12-17 22:23:10 +00:00