Initial commit: implementation of the virtual machine
This commit is contained in:
commit
87a815ac27
6 changed files with 262 additions and 0 deletions
11
Makefile
Normal file
11
Makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue