Skip to content

Instantly share code, notes, and snippets.

View itsacezon's full-sized avatar

ace itsacezon

View GitHub Profile
@itsacezon
itsacezon / spectre.c
Created January 9, 2018 10:36 — forked from ErikAugust/spectre.c
Spectre example code
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#ifdef _MSC_VER
#include <intrin.h> /* for rdtscp and clflush */
#pragma optimize("gt",on)
#else
#include <x86intrin.h> /* for rdtscp and clflush */
#endif