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

Subversion Repositories c0or1k

[/] [c0or1k/] [trunk/] [conts/] [posix/] [test0/] [include/] [test_exec_linker.lds.in] - Rev 6

Go to most recent revision | Compare with Previous | Blame | View Log

/*
 * Simple linker script for userspace or svc tasks.
 *
 * Copyright (C) 2007 Bahadir Balban
 */

virtual_base = %s;

/* First page before the env/args */


ENTRY(_start)

SECTIONS
{
        . = virtual_base;
        .text : { *(.text.head) *(.text) }
        .rodata : { *(.rodata) }
        .rodata1 : { *(.rodata1) }
        . = ALIGN(4K);
        .data : { *(.data) }
        .got : { *(.got) }
        .got.plt : { *(.got.plt) }
        .bss : { *(.bss) }
}

Go to most recent revision | 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.