I am a beginner of x86 assembly. The question is why 3 will be stored at address z+8. I am so confused. Please help me if you know why. Thanks.
.DATA
var DB 64
var2 DB ?
DB 10
X DW ?
Y DD 3000
Z DD 1,2,3; Declare three 4-byte words of memory starting at address “Z”, and initialized to
; 1, 2, and 3, respectively. E.g. 3 will be stored at address Z+8.