Hi All, when I write: const char mysting[] ={"my string"}; data are placed to DATA segment, not code sement. I know if it would be written like this: code char mysting[] ={"my string"}; data will be placed in code segment. What I have to do for automatic placing const data to code segment? I did it by #define const code But may be other ways are exist. Thanks, Vladimir
const char mysting[] ={"my string"};
code char mysting[] ={"my string"};
const char code myString[] = "Hello";
Thank you Mark for your answer. But if compiler knows that data read-only, why it's difficult to place it in ROM segment? I've seen a program compiled by IAR, and there were no statments "code" for "const" data. Vladimir
It's not a difficulty. The idea is to give the user the flexibility to locate the strings in any memory space. The default is data space. While you could make an argument that as a const, it should default to code space, someone will then ask why it is not in data space.
'const' is similar read-only, but it is not a memory_storage_qualifier. Look at the example:
struct CCC { const int x; int y; } ccc = { 1, 2 }; void func(const char *str) { char * ptr; ptr = str; // MUST produce WARNING *ptr = 'B'; // LEGAL *str = 'A'; // ILLEGAL ccc.y = 5; // LEGAL ccc.x = 2; // ILLEGAL }
Hello Sergey, many thanks for your example, I didn't consider this situation. Vladimir
View all questions in Keil forum