Skip to content

Instantly share code, notes, and snippets.

View cmdneo's full-sized avatar
👻
Undefined Behaviour

CMD AMIY cmdneo

👻
Undefined Behaviour
  • Floppyyy
View GitHub Profile
@cmdneo
cmdneo / gist:183b0623d2402dc53f5982dac867b0c0
Created July 8, 2019 19:20 — forked from robmint/gist:4753401
Basic linux framebuffer graphics setup
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
#include <linux/fb.h>
#include <sys/mman.h>
#include <sys/ioctl.h>
#include <stdint.h>
#include <stdbool.h>
#include <linux/input.h>