mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 06:11:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			493 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			493 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#include "sdkconfig.h"
 | 
						|
 | 
						|
ENTRY(reset_vector)
 | 
						|
 | 
						|
MEMORY
 | 
						|
{
 | 
						|
    ram(RW) : ORIGIN = 0, LENGTH = CONFIG_ESP32S2_ULP_COPROC_RESERVE_MEM
 | 
						|
}
 | 
						|
 | 
						|
SECTIONS
 | 
						|
{
 | 
						|
    . = ORIGIN(ram);
 | 
						|
    .text : 
 | 
						|
    {
 | 
						|
        *(.text)
 | 
						|
        *(.text*)
 | 
						|
    } >ram
 | 
						|
 | 
						|
    .data ALIGN(4):
 | 
						|
    {
 | 
						|
        *(.data)
 | 
						|
        *(.data*)
 | 
						|
        *(.sdata)
 | 
						|
        *(.sdata*)
 | 
						|
    } > ram 
 | 
						|
 | 
						|
    .bss ALIGN(4) :
 | 
						|
    {
 | 
						|
        *(.bss)
 | 
						|
        *(.bss*)
 | 
						|
        *(.sbss)
 | 
						|
        *(.sbss*)
 | 
						|
    } >ram
 | 
						|
 | 
						|
    __stack_top = ORIGIN(ram) + LENGTH(ram);
 | 
						|
}
 |