简单汇编指令介绍:

eax,ebx,ecx,edx,esp,ebp,esi,edi   //8个通用寄存器

push eax   //压栈
pop  eax   //出栈

mov eax,0
xor eax,eax    //清零

push 0
nop
mov eax,eax
xchg eax,eax   //无作用

add eax,1
sub eax,-1
inc eax       //加1

add eax,-1


sub eax,1
dec eax        //减1

jmp xxxxx
push xxxxx   
retn
mov eax xxxxx  
jmp eax
je xxxxx  
jne xxxxx       //跳转

and eax,ebx     //与
or eax,ebx      //或
xor eax,ebx     //异或
test eax,ebx    //测试
cmp eax,ebx     //比较

 
[url=http://www.gobenet.net.cn ]http://www.gobenet.net.cn [/url]