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.
我一直想知道这两者有什么区别
mov esi,eax
和
mov [esi],eax
曾是。
任何帮助表示赞赏。
mov esi,eax将 register 的内容写入eaxregister esi。
eax
esi
mov [esi],eax将寄存器的内容写入寄存器eax指定的内存地址esi(例如,如果esi包含值 0x1234,eax将写入地址 0x1234)。