A89: matrix


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

A89: matrix




i seem to be having trouble accessing certain bytes in a matrix...lets say i 
have

some_matrix:   ;address at a0
 dc.b 03840344;totally random...commas should be there
 dc.b 01023388

then if i wanted to get a0 to point to the underlined one i would do:
[(column)+(row*8)]=bytes from a0
[(    5     )+( 1*8  )]=13 bytes from a0...this is correct right?


Follow-Ups: