Skip to content

Instantly share code, notes, and snippets.

@ricarkol
ricarkol / kvm-host.c
Last active October 24, 2023 08:23 — forked from zserge/kvm-host.c
Tiny KVM host to at least partially run Linux kernel
#define _GNU_SOURCE
#include <asm/bootparam.h>
#include <errno.h>
#include <fcntl.h>
#include <linux/kvm.h>
#include <linux/kvm_para.h>
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>