Hello members,
I am using MSP430F1611 for my project with CrossStudio. I need to use assembly instructions in between my C code like,
void Wait(unsigned int delay)
{
unsigned int c;
for(c=0;c<delay;c++)
{
//asm(“nop”);
}
}
But above use of “asm” is giving compilation error. I am finding it bit difficult to find the proper document for this. Has anyone used this earlier with CrossStudio? A document will be much helpful.
Thanks in advance.