문제

Something like al will contain the address of esi + ecx + 1 ?

movb (%esi, %ecx, 1), %al
도움이 되었습니까?

해결책

It loads the byte at memory address esi + ecx into al.

In general, in AT&T syntax,

(base, offset, multiplier)

refers to the datum located at memory address base + offset*multiplier.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top