Rev. 1.50, 10/04, page 288 of 448
10.1.45 NOP (No Operation): System Control Instruction
Format Operation Instruction Code Cycle T Bit
NOP No operation 0000000000001001 1 —
Description: This instruction simply increments the program counter (PC), advancing the
processing flow to execution of the next instruction.
Notes: None
Operation:
NOP( ) /* NOP */
{
PC += 2;
}
Example:
NOP ;Time equivalent to one execution state elapses.