Explore Connect Documentation
Snippets
1
6
7
8
9
10
11
12
13
// {
int main() {
  uint timeStampCounter = 0;
  asm("rdtsc": "=a" (timeStampCounter));
  std::cout << timeStampCounter << std::endl;
  return 0;
}
Enter to Rename, Shift+Enter to Preview