Hey guys,
what does this assembly code mean? -> 'asm(" RPT #3 || NOP");'
Thanks.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hey guys,
what does this assembly code mean? -> 'asm(" RPT #3 || NOP");'
Thanks.
Hi,
It means execute NOP instruction 3 times. You can refer CPU instruction set for detail about RPT instruction.
Regards,
Vivek Singh
One small correction: the instruction will execute NOP 4 times, not 3. There is an "N + 1" count associated with RPT. The user's guide in Vivek's post has details.
Regards,
Richard