mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-25 17:27:18 +00:00
21 lines
238 B
Plaintext
21 lines
238 B
Plaintext
|
|
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x20000;
|
|
__cpu_reset = 0xdeadbeef;
|
|
.text . : {
|
|
. = ALIGN(16);
|
|
_start = . ;
|
|
*(.rom.text);
|
|
*(.text)
|
|
. = ALIGN(16);
|
|
}
|
|
.data . : {
|
|
. = ALIGN(16);
|
|
*(.rom.data);
|
|
*(.data)
|
|
. = ALIGN(16);
|
|
}
|
|
} |