RE: [arm-gnu] Unsupported instruction blx(1) generated in Cortex-M3 binary
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [arm-gnu] Unsupported instruction blx(1) generated in Cortex-M3 binary



> There's a simple workaround, though; define the function in an
> assembly file as an absolute symbol:
> 
>         .type foo, %function
>         .globl foo
>         foo = 0x808001
> 

Thank you Daniel! It works.
Jeff