rockbox/utils/atj2137/adfuload/test_binary/lcm/test.lds
Marcin Bukat c626fe7004 atj213x: e100/150 lcd test binary
Change-Id: I3f9fa21dcb33d1cd3081d0c995adfb44e085dd7a
2014-10-18 20:18:01 +02:00

51 lines
709 B
Text

OUTPUT_ARCH(mips)
ENTRY(main)
SECTIONS
{
.text 0xa0000000 :
{
relocstart = .;
*(.init.text*)
*(.text*)
}
. = ALIGN(0x1000);
_irqbase = .;
.exception_handlers :
{
. += 0x200;
*(.irq_vector*)
}
.data :
{
*(.rodata*)
*(.data*)
relocend = .;
}
.bss :
{
bssbegin = .;
*(.sbss*)
*(.bss*)
*(COMMON)
*(.scommon*)
bssend = .;
}
.stack (NOLOAD) :
{
stackbegin = .;
. += 0x2000;
stackend = .;
irqstackbegin = .;
. += 0x400;
irqstackend = .;
}
}