Tool/software: TI C/C++ Compiler
Hi All
I'm a beginner. I am studying TivaC
I have a question about the linker. As I know, when I compiler the code, the linker will give every variable a address( in SRAM), and the code will be in FLASH.
"
uint64_t ui32Period,count;
uint8_t TimeOn=0,TimeOff;
"
View->Memory and I see those varibles are in SRAM( start at 0x20000000), and base on those addresses, I can observe their values.
Now, when I code:
"
volatile uint8_t test;
"
I can also know exactly its address, but I can't see its address in memory.
I will attach the picture.
And finally, sorry for my "poor" English.
