Statistics: Posted by eriksl — Sun Jul 26, 2015 10:00 pm
Statistics: Posted by scargill — Sun Jul 26, 2015 9:53 pm
Statistics: Posted by eriksl — Fri Jul 24, 2015 9:44 pm
Code:
512KB - 16KB (system param) - flash.bin size (e.g. 16Kb) = 0x78000
Code:
irom0_0_seg : org = 0x40204000, len = 0x78000
Statistics: Posted by datltq — Fri Jul 24, 2015 11:48 am
Code:
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 = 0x40240000, len = 0x3C000
+ irom0_1_seg: org = 0x40280000, len = 0x3c000
}
PHDRS
{
dport0_0_phdr PT_LOAD;
dram0_0_phdr PT_LOAD;
dram0_0_bss_phdr PT_LOAD;
iram1_0_phdr PT_LOAD;
irom0_0_phdr PT_LOAD;
+ irom0_1_phdr PT_LOAD;
}
Code:
.irom0.text : ALIGN(4)
{
_irom0_text_start = ABSOLUTE(.);
*(.irom0.literal .irom.literal .irom.text.literal .irom0.text .irom.text)
_irom0_text_end = ABSOLUTE(.);
} >irom0_0_seg :irom0_0_phdr
+
+ .irom1.text : ALIGN(4)
+ {
+ _irom1_text_start = ABSOLUTE(.);
+ *(.irom1.text)
+ _irom1_text_end = ABSOLUTE(.);
+ } >irom0_1_seg :irom0_1_phdr
Statistics: Posted by eriksl — Tue Jul 21, 2015 5:51 pm