Różne programy na zajęcia laboratoryjne z AK2
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

timestamp64.s 133B

12345678910111213141516
  1. # Jan Potocki 2020
  2. .global timestamp
  3. # Segment kodu
  4. .text
  5. timestamp:
  6. xor %rax, %rax
  7. cpuid
  8. rdtsc
  9. shl $32, %rdx
  10. or %rdx, %rax
  11. ret