Name: Anonymous 2011-01-18 18:37
Hi, where could i find a tutorial with more examples like this ?
A=0; C++
MOV A,0 ASM
A++; C++
inc A ASM
A=A+B; C++
add A,B ASM
A=B*6; C++
mov eax,B
imul eax,6
mov A,eax ASM
A=0; C++
MOV A,0 ASM
A++; C++
inc A ASM
A=A+B; C++
add A,B ASM
A=B*6; C++
mov eax,B
imul eax,6
mov A,eax ASM