JMP                     JMP Jump to new location                      JMP

  Operation:  (PC + 1) -> PCL                           N V - B D I Z C
              (PC + 2) -> PCH                           . . . . . . . .

  +----------------+-----------------------+---------+---------+----------+
  | Addressing Mode| Assembly Language Form| OP CODE |No. Bytes|No. Cycles|
  +----------------+-----------------------+---------+---------+----------+
  |  Absolute      |   JMP $FFFF           |   $4C   |    3    |    3     |
  | (Abs.Indirect) |   JMP ($FFFF)         |   $6C   |    3    |    5     |
  +----------------+-----------------------+---------+---------+----------+

 65816 Extensions:

  +----------------+-----------------------+---------+---------+----------+
  | Addressing Mode| Assembly Language Form| OP CODE |No. Bytes|No. Cycles|
  +----------------+-----------------------+---------+---------+----------+
  | (Abs.Ind.,X)   |   JMP ($FFFF,X)       |   $7C   |    3    |     6    |
  | AbsoluteLong   |   JMP $FFFFFF         |   $5C   |    4    |     4    |
  +----------------+-----------------------+---------+---------+----------+
   See also: JML