A89: lea


[Prev][Next][Index][Thread]

A89: lea




what are the differences between doing:
lea sprites(pc),a0

and 

move.l sprites,a0

where 'sprites' is the starting address of a table of various sprites...

ie:
sprites:
 dc.l 0
 dc.l sprite1
 dc.l sprite2
 dc.l ...