Skip to content

Instantly share code, notes, and snippets.

View juliusf's full-sized avatar

Julius Flohr juliusf

View GitHub Profile
@ErikAugust
ErikAugust / spectre.c
Last active February 29, 2024 09:33
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