1. Abbreviation for incorporated.

2. A 6502 instruction that adds 1 to a memory location.

  • Function: N++
  • Updates flags: S . . . . . Z .
  • Opcode numbers:
    dp    $E6
    abs   $EE
    dp,x  $F6
    a,x   $FE
    

Don't forget to add 2 cycles, as INC is a read-modify-write instruction.

Similar: INX | INY | DEC | DEX | DEY
See also: 6502 instructions | 6502 addressing modes