You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
ENTRY(__start)
|
|
|
|
SECTIONS
|
|
{
|
|
/* virt machine, RAM starts at 1gb */
|
|
. = (1 << 30);
|
|
.text : {
|
|
*(.text)
|
|
}
|
|
.rodata : {
|
|
*(.rodata)
|
|
}
|
|
/* align r/w section to next 2mb */
|
|
. = ALIGN(1 << 21);
|
|
.data : {
|
|
*(.data)
|
|
}
|
|
.bss : {
|
|
*(.bss)
|
|
}
|
|
/DISCARD/ : {
|
|
*(.ARM.attributes)
|
|
}
|
|
}
|