Skip to content

Instantly share code, notes, and snippets.

@voalvu
voalvu / vm.c
Created April 30, 2026 17:37
super simple stack based virtual machine in c
// https://www.youtube.com/watch?v=2qV-1JhxWeE
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
typedef enum{
PUSH,
ADD,
PRINT
} InstType;