Permalink
Switch branches/tags
Find file Copy path
9625fd1 Jul 22, 2018
1 contributor

Users who have contributed to this file

30 lines (28 sloc) 304 Bytes
ENTRY(_start)
SECTIONS
{
PROVIDE(__ipl_start = 0x40003000);
. = __ipl_start;
.text.start :
{
*(.text.start)
}
.text :
{
*(.text*);
}
.data :
{
*(.data*);
*(.rodata*);
}
. = ALIGN(0x10);
__ipl_end = .;
.bss :
{
__bss_start = .;
*(COMMON)
*(.bss*)
__bss_end = .;
}
}