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

Subversion Repositories c0or1k

[/] [c0or1k/] [trunk/] [conts/] [posix/] [test0/] [include/] [test_exec_linker.lds.in] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 drasko
/*
2
 * Simple linker script for userspace or svc tasks.
3
 *
4
 * Copyright (C) 2007 Bahadir Balban
5
 */
6
 
7
virtual_base = %s;
8
 
9
/* First page before the env/args */
10
 
11
 
12
ENTRY(_start)
13
 
14
SECTIONS
15
{
16
        . = virtual_base;
17
        .text : { *(.text.head) *(.text) }
18
        .rodata : { *(.rodata) }
19
        .rodata1 : { *(.rodata1) }
20
        . = ALIGN(4K);
21
        .data : { *(.data) }
22
        .got : { *(.got) }
23
        .got.plt : { *(.got.plt) }
24
        .bss : { *(.bss) }
25
}

powered by: WebSVN 2.1.0

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