NOP Macro

A macro that performs no operation.

Include

<xc.h>

Prototype

void NOP(void);

Remarks

This macro executes a nop instruction.

Example

#include <xc.h>

int main(void)
{
  while(1)
    NOP();
}