Skip to content

Instantly share code, notes, and snippets.

@nnnik
Created February 1, 2015 04:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nnnik/18500756089a4bee5c5c to your computer and use it in GitHub Desktop.
Save nnnik/18500756089a4bee5c5c to your computer and use it in GitHub Desktop.
Add
Add:
MOV EAX, [ESP+4]
MOV ECX, [ESP+8]
JECXZ AddLOOPEND
AddLOOP:
MOV EDX, EAX
AND EDX,ECX
XOR EAX,ECX
SHL EDX,1
MOV ECX,EDX
JECXZ AddLOOPEND
JMP AddLOOP
AddLOOPEND:
RET 0x8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment