Advertisement
Guest User

Untitled

a guest
May 28th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [Enable]
  2. alloc(pinunrandom,512)
  3. label(returnhere)
  4. label(zeroAlign)
  5. label(continueCompare)
  6.  
  7. 0074A87A: // 03 C2 80 38 0A 73 07 80 E1 01 D0 E1 EB 03 80 E1
  8. jmp pinunrandom
  9. returnhere:
  10.  
  11. pinunrandom:
  12. add eax,edx
  13. push edx
  14. shr edx,1
  15. cmp edx,09
  16. je zeroAlign
  17. ja continueCompare
  18. inc edx
  19. jmp continueCompare
  20.  
  21. zeroAlign:
  22. mov edx,0
  23.  
  24. continueCompare:
  25. mov [eax],edx
  26. pop edx
  27. cmp byte ptr [eax],0a
  28. jmp returnhere
  29.  
  30. [Disable]
  31. 0074A87A:
  32. add eax,edx
  33. cmp byte ptr [eax],0a
  34.  
  35. dealloc(pinunrando
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement