Hi,
I wonder why GCC don't compile that simple code:
static inline unsigned StackPointerValue(void)
{
unsigned long val;
asm volatile (" str R13, retval");
return val;
}
When I try to compile the following error appears:
"Internal_relocation (type: OFFSET_IMM) not fixed up"
What does that mean? How can I get that running?
Best regards
XJAG74