I red the definition from http://en.wikipedia.org/wiki/NOP but I still need a simpler definition.
I stumbled across a code and I don't know exactly what it does:
switch (Something)
{
case this_one:
asm ("nop");
break;
case other_one:
asm ("nop");
break;
default:
asm ("nop");
break;
}