Part Number: TMS320F28335
Tool/software: TI C/C++ Compiler
Hello,
I'm currently writing an inline assembly that puts the values in a register on the stack.
In general, function symbols are converted to addresses, and it seems that assembly language is used like this:
__asm(" MOVL #0x3333, ACC");
Assuming that the name of the function symbol I want to use is "Function_name", I want to store the value of the register as a symbol as follows.
__asm(" MOVL_Function_name, ACC");
__asm(" MOVL ptr[_Function_name], ACC") in gcc; It seems to be used as.
I'm curious how to store values as symbols in TI.
Thanks, Regards
Han