Skip to content

Instantly share code, notes, and snippets.

View td0's full-sized avatar
๐Ÿš

Tadho td0

๐Ÿš
View GitHub Profile
@td0
td0 / spectre.c
Created January 6, 2018 05:55
Spectre Demo
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#ifdef _MSC_VER
#include <intrin.h>
#pragma optimize("gt",on)
#else
#include <x86intrin.h>
#endif