where the linker script file is generated in keil.where i find stackstartaddress and stackendaddress in linker script file.Can any one help me..
Linker scatter file is automatically generated by uVision (unless custom Scatter file is selected in the Target Options).
Stack is defined in the Startup file with the symbol "Stack_Mem" which is also the start of Stack (low address). End of Stack (high address) is provided in symbol "Stack_Top" (ARM7/9) or "__initial_sp" for Cortex-M.
Thanks robert. ur answer helps alot.As u said i opt for scatter file in target but it contains ROM and RAM address only.Is it contain any more?