Tool/software: Code Composer Studio
Hallo.
I have C Function with two Parameter:
void FunctionTest (uint16_t *const timerName, uint8_t channel)
{
asm("mov.b channel, r13") ; //Value channel in R13
asm("mov.w timerName, r15") ; //Value timerName in R15
}
I want to write Function Input Parameters in CPU Register. But I get Errors. How can I get Funktion Parameters in CPU Register in likebel way?
Do you know TI Dokuments that describes handling from MSP430FR6989 C and Assembler and both together and Assembler Commands?
Thanks in Adwance
Alex