swh:1:snp:63e2d142f91fc04ec33789d9d7bb85f3bef72e05
Raw File
Tip revision: 66d8e606a8d996ded60bc81d5edf319142a5fad9 authored by Ron Burkey on 04 October 2021, 11:49:55 UTC
Merge branch 'master' of https://github.com/virtualagc/virtualagc
Tip revision: 66d8e60
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