mirror of
https://github.com/leoetlino/project-restoration
synced 2025-10-06 00:32:43 +02:00
23 lines
326 B
Plaintext
23 lines
326 B
Plaintext
OUTPUT_ARCH(arm)
|
|
|
|
SECTIONS
|
|
{
|
|
. = ${CODEADDR};
|
|
.text : {
|
|
__text_start = . ;
|
|
*(.text)
|
|
*(.text.*)
|
|
__text_end = . ;
|
|
}
|
|
|
|
. = ${DATAADDR};
|
|
.data : {
|
|
__data_start = . ;
|
|
*(.rodata)
|
|
*(.data)
|
|
*(.bss)
|
|
*(COMMON)
|
|
__data_end = . ;
|
|
}
|
|
}
|