OpenCores
URL https://opencores.org/ocsvn/potato/potato/trunk

Subversion Repositories potato

[/] [potato/] [trunk/] [benchmarks/] [benchmark.ld] - Rev 58

Compare with Previous | Blame | View Log

/*
 * Linker Script for the Potato Processor benchmark applications
 * (c) Kristian Klomsten Skordal 2014 - 2015 <kristian.skordal@wafflemail.net>
// Report bugs and issues on <http://opencores.org/project,potato,bugtracker>
 */

/*
 * The linker script is intended to be used with the "official" test platform,
 * described in platform.h.
 */

ENTRY(_start);

SECTIONS
{
        .text 0x100 :
        {
                *(.init)
                *(.text*)
                __text_end = .;
        }

        .data 0x2000 : AT(ADDR(.text) + SIZEOF(.text))
        {
                __data_begin = .;
                *(.rodata*)
                *(.data*)
                __data_end = ALIGN(4);
        }

        .bss ALIGN(4):
        {
                __bss_begin = .;
                *(.bss*)
                __bss_end = ALIGN(4);
        }

        __stack_top = 0x4000;
}


Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.