Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Assume EDX:EAX and EBX:ECX pairs hold two 64 bit values that are to be added together.
  2.  
  3. add eax, ecx
  4. adc edx, ebx
  5. mov dword [ebp+Some64BitValue], eax
  6. mov dword [ebp+Some64BitValue+4], edx
  7.  
  8. add eax, dword [esi]
  9. adc eax, dword [esi+0x4]
  10. adc eax, dword [esi+0x8]
  11. adc eax, dword [esi+0x10]
  12. ...
  13. adc eax, 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement