Hello,
I'm using CCS IDE and TI arm compiler v20.2.6 and want to implement custom bootloader. For that I want to write some inline assembly code, I have written a code but it showing error that "Illegal symbol", "Unexpected trailing operands", "Bad term in expression". Here is my code:-
__asm (
" ldr r0, =0x20000000\n"
" ldr r1, =0xe000ed08\n"
" str r0, [r1]\n"
);
Can I get some guidance to implement inline assembly. Thanks in advance.