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 ebx, 2 mov ecx, 3 mov eax, [ebx+ecx*4]
数据将从哪个地址移动到 eax?
而且我不明白 [ebx+ecx*4] 中地址的计算结果是什么?
14 (= 2 + (3*4)),如果我没记错的话