#pragma arm section rwdata ="cellular_ram"u8 gv_CFI[256]={0};/* MAN ID DID1,DID2,DID3*/u16 gv_DIDR;...#pragma arm section rwdata[...]I want to put gv_CFI and the ohter 4 u16 var together in a fix place.But, after link finished. I check the MAP file. I found this:[color="#FF0000"] gv_CFI 0xa802fe58 Data 128 init.ptl(.bss) [/color] gv_DIDR 0xa01ff000 Data 2 init.ptl(cellular_ram) ...the gv_CFI is placed wrong.....How can I deal with this ? Why the linker split it from the other four? They are all .bss. why??
#pragma arm section rwdata ="cellular_ram"u8 gv_CFI[256]={0};/* MAN ID DID1,DID2,DID3*/u16 gv_DIDR;...#pragma arm section rwdata