Part Number: TDA2EX17EVM
Tool/software: TI C/C++ Compiler
hi,
I am used the linker section as Stack area.I have tried to write on stack at time function switching it will stroe only two byte of address.
STACK_RAM : org = 0x8B000000, len = 0x20000
.stack :
{
stack_start = .;
*(.stack.*) ;
. = ALIGN(4);
. = . + 0x5000;
*(._ABORT_STACK_SIZE.*) ;
. = . + 0x3000;
KEEP(*(.APP_NO_INIT_STACK_CORE0_UNSPECIFIED))
KEEP(*(.OS_NO_INIT_STACK_CORE0_UNSPECIFIED))
stack_end = .;
} > STACK_RAM
how to change two byte alignment to 4 byte.?
Regards,
Kiran