/* * Copyright (c) 2016 Cesanta Software Limited * All rights reserved * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., 51 Franklin * Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Note: stub is deliberately loaded close to the very top of available RAM, to reduce change of colliding with anything else... */ MEMORY { iram : org = 0x400BE000, len = 0x1000 dram : org = 0x3ffcc000, len = 0x14000 } ENTRY(stub_main) SECTIONS { .text : ALIGN(4) { *(.literal) *(.text .text.*) } > iram .bss : ALIGN(4) { _bss_start = ABSOLUTE(.); *(.bss) _bss_end = ABSOLUTE(.); } > dram .data : ALIGN(4) { *(.data) *(.rodata .rodata.*) } > dram } INCLUDE "rom_32.ld"