The basic fetch and execute cycle of a computer

while running
  fetch instruction

  increment program counter (PC)

  decode instruction

  while  operands needed
    fetch operands
    increment PC
  
  endwhile

  execute instruction

endwhile