mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
18 lines
502 B
Plaintext
18 lines
502 B
Plaintext
/* Flash Split for 16M chips */
|
|
/* irom0 940KB */
|
|
/* eeprom 20KB */
|
|
/* spiffs 15MB */
|
|
|
|
MEMORY
|
|
{
|
|
dport0_0_seg : org = 0x3FF00000, len = 0x10
|
|
dram0_0_seg : org = 0x3FFE8000, len = 0x14000
|
|
iram1_0_seg : org = 0x40100000, len = 0x8000
|
|
irom0_0_seg : org = 0x40210000, len = 0xEB000
|
|
}
|
|
|
|
PROVIDE ( _SPIFFS_start = 0x40300000 );
|
|
PROVIDE ( _SPIFFS_end = 0x41200000 );
|
|
|
|
INCLUDE "../ld/eagle.app.v6.common.ld"
|