Advertisement
Guest User

Untitled

a guest
Dec 18th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. calc:
  2. mov eax, 0
  3. mov ecx, decoded ;init
  4. mov edx, 0
  5.  
  6. groop:
  7. mov ebx, dword [ecx]
  8. shl ebx, 2
  9. add ebx, dword [ecx]
  10. add ebx, dword [ecx] ;mul7
  11. add ebx, dword [ecx]
  12. add eax, ebx
  13. add ecx, 4
  14. mov ebx, dword [ecx]
  15. shl ebx, 1
  16. add ebx, dword [ecx] ;mul3
  17. mov eax, ebx
  18. add ecx, 4
  19. add eax, dword[ecx] ;mul 1
  20. add ecx, 4
  21. inc edx
  22. cmp edx ,3
  23. jl groop
  24. jmp end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement