Skip to content

Instantly share code, notes, and snippets.

View ashishnegi's full-sized avatar

Ashish Negi ashishnegi

  • Software Developer
  • Austin, TX
View GitHub Profile
@aphyr
aphyr / gist:43a04a8681cdab0b04c9
Created November 11, 2014 00:31
Computer talks and videos
@mmozeiko
mmozeiko / incbin.c
Last active July 21, 2024 21:12
Include binary file with gcc/clang
#include <stdio.h>
#define STR2(x) #x
#define STR(x) STR2(x)
#ifdef _WIN32
#define INCBIN_SECTION ".rdata, \"dr\""
#else
#define INCBIN_SECTION ".rodata"
#endif