LEA
内容纲要
1.lea
2.lea与mov
详细内容
1.lea
lea(Load_Effective_Address):获取有效的地址
lea eax,na
lea ecx,DWORD PTR ds:[eax]
//lea DWORD PTR ds:[ecx],ds:[0x0012ff40] //improper operand type
//lea DWORD PTR ds:[ecx],eax //improper operand type
lea ecx,DWORD PTR ds:[edx]
lea的第一个操作数必须为寄存器,第二个操作数为内存
2.lea与mov
a:lea eax,dword ptr ds:[esp-4]
b:mov eax,dword ptr ds:[esp-4]
a:将dword ptr ds:[esp-4]的内存单元地址给eax
b:将dword ptr ds:[esp-4]的内存单元的内容赋给eax
课堂练习
1.练习lea指令
2.mov与lea的操作区别