Remove unnecessary lines of code

This commit is contained in:
eloaders 2014-07-19 14:22:18 +02:00
parent f9a8e0cf07
commit 50ee3b7b67
1 changed files with 0 additions and 11 deletions

View File

@ -36,17 +36,6 @@ int main(void)
printf("Error: %s\n", cpuid_error());
return -3;
}
/**int a, b;
for (a = 0; a < 5; a++)
{
__asm__("cpuid"
:"=a"(b) // EAX into b (output)
:"0"(a) // a into EAX (input)
:"%ebx","%ecx","%edx"); // clobbered registers
printf("The code %i gives %i\n", a, b);
}*/
struct cpu_mark_t mark;
cpu_tsc_mark(&mark);
cpu_tsc_unmark(&mark);