Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
像 al 这样的东西会包含 esi + ecx + 1 的地址吗?
movb (%esi, %ecx, 1), %al
它将内存地址处的字节加载esi + ecx到al.
esi + ecx
al
一般来说,在 AT&T 语法中,
(base, offset, multiplier)
指位于内存地址的数据base + offset*multiplier。
base + offset*multiplier