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 0x804a1d4(,%edx,4),%eax
0x804a1d4 + %edx*4の内容をに割り当てる%eax
0x804a1d4 + %edx*4
%eax
拠点はありません。ベースレジスタまたはオフセットレジスタのいずれか(両方ではない)を省略できます。この場合、ベースアドレスはハードコーディングされており、eaxに移動される値はからロードされます。
0x804a1d4 + (edx * 4)