URL
https://opencores.org/ocsvn/potato/potato/trunk
Subversion Repositories potato
[/] [potato/] [trunk/] [benchmarks/] [benchmark.ld] - Rev 24
Go to most recent revision | 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 0x0 :
{
*(.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;
}
Go to most recent revision | Compare with Previous | Blame | View Log