Вопрос

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