LAX                        LAX LDA memory, TAX                        LAX

                                                        N V - B D I Z C
  Operation:  A <- M, X <- A                            / . . . . . / .

  +----------------+-----------------------+---------+---------+----------+
  | Addressing Mode| Assembly Language Form| OP CODE |No. Bytes|No. Cycles|
  +----------------+-----------------------+---------+---------+----------+
  |  ZeroPage      |   LAX $FF             |   $A7   |    2    |    3     |
  |  ZeroPage,Y    |   LAX $FF,Y           |   $B7   |    2    |    4     |
  |  Absolute      |   LAX $FFFF           |   $AF   |    3    |    4     |
  |  Absolute,Y    |   LAX $FFFF,Y         |   $BF   |    3    |    4*    |
  |  (Indirect,X)  |   LAX ($FF,X)         |   $A3   |    2    |    6     |
  |  (Indirect),Y  |   LAX ($FF),Y         |   $B3   |    2    |    5*    |
  +----------------+-----------------------+---------+---------+----------+
  * Add 1 if page boundary is crossed.