23 lines
359 B
Plaintext
23 lines
359 B
Plaintext
/*
|
|
* SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/* Default entry point */
|
|
ENTRY(call_start_cpu0);
|
|
|
|
SECTIONS
|
|
{
|
|
#include "ld.iram.sections"
|
|
|
|
#include "ld.dram.sections"
|
|
|
|
#include "ld.flash.sections"
|
|
|
|
#include "ld.heap.sections"
|
|
|
|
#include "ld.debug.sections"
|
|
#include "ld.discard.sections"
|
|
}
|