/********************************************************************** * * * GNU Linker Directives Script * * * **********************************************************************/ /* Author: Yu-Fang Wu Date: 22nd Oct, 2003 This file contains directives that tell the GNU Linker to place the ".text", ".data" and ".bss" sections in the right places: at addresses 0x08070000, 0x00010000 and 0x1000 respectively. */ SECTIONS { . = 0x08070000; .text : { *(.text) } . = 0x00010000; .data : { *(.data) } . = 0x00020000; .bss : { *(.bss) } }