Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.25 KB | None | 0 0
  1. .data
  2. .text
  3. .globl czas
  4. .type czas, @function
  5.  
  6. czas:
  7. push %ebp
  8. mov %esp, %ebp
  9. cmp $1,%eax
  10. jl rdtsc
  11. jmp rdtscp
  12.  
  13. rdtsc:
  14. xor %eax,%eax
  15. cpuid
  16. rdtsc
  17. jmp end
  18.  
  19. rdtscp:
  20. #xor %eax,%eax
  21. #cpuid
  22. rdtscp
  23. jmp end
  24.  
  25. end:
  26. mov %ebp, %esp
  27. pop %ebp
  28. ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement