wolfssl.icf 453 B

1234567891011
  1. define memory mem with size = 4G;
  2. define region FLASH = mem:[from 0x00000000 to 0x000fffff];
  3. define region SRAM = mem:[from 0x20000000 to 0x2003ffff];
  4. define block HEAP with alignment = 8, size = 0x00010000 { };
  5. initialize by copy { readwrite };
  6. do not initialize { section .noinit };
  7. place at start of FLASH { readonly section .intvec };
  8. place in FLASH { readonly };
  9. place at start of SRAM { section VTABLE };
  10. place in SRAM { readwrite, block HEAP };