view scripts/linker.script @ 0:5d9f272f4db6

import template
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Thu, 24 Feb 2011 23:04:37 -0500
parents
children
line wrap: on
line source

SECTIONS
{
  ENTRY(start)
  . = 0x100000;
  .text : { *(.text) }
  .data : { *(.data) }
  .bss : { *(.bss) }
}