Search Results

Search results 1-1 of 1.

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • Good morning Im using the SES for development, and I have trouble with the memory usage window. It does not display the ROM section used for initialized data n the ROM memory. My linker script is as follows: .... .data : AT (__data_load_start) { . = ALIGN(4); __data_start = .; *(.data .data.*) *(.gnu.linkonce.d.*) __global_pointer$ = . + 0x800; *(.sdata .sdata.*) *(.gnu.linkonce.s.*) . = ALIGN(4); __data_end = .; } > REGION_DATA .... I am expecting to see an area of the ROM memory used for load …