Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int main()
- {
- int a = 2, b = 3, c = -4, d;
- __asm{
- lea ebx,c
- mov eax,a
- add eax,b
- mov ecx,c
- mul ecx
- mov d,eax
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement