URL
https://opencores.org/ocsvn/c0or1k/c0or1k/trunk
Subversion Repositories c0or1k
[/] [c0or1k/] [trunk/] [conts/] [test_suite0/] [include/] [linker.lds] - Rev 2
Compare with Previous | Blame | View Log
/** Example working linker script for this container.** Copyright (C) 2009 B Labs Ltd.*/vma_start = 0xa0000000;lma_start = 0x100000;offset = vma_start - lma_start;ENTRY(_start)SECTIONS{. = vma_start;.text : AT (ADDR(.text) - offset) { *(.text.head) *(.text) }.rodata : AT (ADDR(.rodata) - offset) { *(.rodata) }.rodata1 : AT (ADDR(.rodata1) - offset) { *(.rodata1) }. = ALIGN(4K);.data : AT (ADDR(.data) - offset) { *(.data) }.bss : AT (ADDR(.bss) - offset){*(.bss). += 0x1000;. = ALIGN(8);__stack = .;}__end = .;}
