EE 308
Using X and Y as Pointers
ldx #table
not
ldx table
ldx #table ; Address of table => X
ldx table ; First two bytes of table => X
ldaa 0,x
inx
or
ldaa 1,x+