Moved vm_* code to its own file (runtime.(h|c))

This commit is contained in:
2023-10-15 21:41:16 +01:00
parent 14e9192996
commit 639808a092
5 changed files with 293 additions and 236 deletions

View File

@@ -7,7 +7,7 @@ OUT=ovm.out
SRC=src
DIST=build
CODE=$(addprefix $(SRC)/, main.c)
CODE=$(addprefix $(SRC)/, runtime.c main.c)
OBJECTS=$(CODE:$(SRC)/%.c=$(DIST)/%.o)
DEPS=$(OBJECTS:%.o=%.d)