Hello guys
I am a bit confused about somethink
Consider having an 8x8 array declared like as follows :
A: .word 0, 1, 2, 3, 4, 5, 6, 7
.word 7, 6, 5, 4, 3, 2, 1, 0
.word 0, 1, 2, 3, 4, 5, 6, 7
.word 7, 6, 5, 4, 3, 2, 1, 0
.word 0, 1, 2, 3, 4, 5, 6, 7
.word 7, 6, 5, 4, 3, 2, 1, 0
.word 0, 1, 2, 3, 4, 5, 6, 7
.word 7, 6, 5, 4, 3, 2, 1, 0
Each memeber of the array will be stored 4 bytes after the other?
E.X the first (A[0 0]=0) member will be stored at the start of the table
second (A[0 1]=1) member will be stored at the start of the table +4
third (A[0 2]=2) member will be stored at the start of the table +8
......
last (A[8 8]=0) member will be stored at the start of the table +256
According to the previous the size of the A array would be somethink like 8*8*4=256..
Is that so or i am wrong? (somethink tells me that i am wrong...)