You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
281 B

ENTRY(_start)
SECTIONS
{
. = 0x80000;
.text : { *(.text) }
. = ALIGN (0x400);
.merge1 : { *(.merge1) }
. = ALIGN (0x400);
.merge2 : { *(.merge2) }
. = ALIGN (0x400);
.merge3 : { *(.merge3) }
. = ALIGN (0x400);
.data : { *(.data) }
/DISCARD/ : { *(*) }
}