Initial commit: implementation of the virtual machine

This commit is contained in:
Dimitri Lozeve 2021-01-13 09:16:21 +01:00
commit 87a815ac27
6 changed files with 262 additions and 0 deletions

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
CC = gcc
CFLAGS = -Wall -Werror -pedantic -O3
.PHONY: all
all: vm
vm: src/vm.c
$(CC) $^ -o $@ $(CFLAGS)
clean:
rm -f vm