开发者

Basic assembly question

mov     r8, 开发者_如何学PythonFlushCounts[r14]

Can some one explain me what the FlushCounts[r14] is used for ? Does this mean r14 = &FlushCounts and r8 = FlushCounts ? Why is it done like this ?


This means copy 64 bits from address FlushCount + r14 to r8. Offset in r14 register is in bytes.


This instruction is basically r8 = *(FlushCounts+r14).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜