https://github.com/virtualagc/virtualagc
Raw File
Tip revision: b439c322ff76c75b77699dfabd551e84d90710dc authored by ohommes on 16 June 2008, 03:37:10 UTC
Release 20080615
Tip revision: b439c32
EmbeddedLinker.script
/*
  Filename:	EmbeddedLinker.script
  Purpose:	Linker script for EmbeddedAGC demo.
  Mods:		08/18/04 RSB	Wrote.
*/

SECTIONS
{
  . = 0x200000;
  /* Code section. */
  __text_start = .;
  .text : { *(.text) }
  .data : { *(.data) }
  __bss_start = .;
  .bss : { *(.bss) }
  __bss_end = .;
  /* For the Core Rope.  */
  CoreRope = .;
  .CoreRope : {  }
};


back to top