Initial commit: implementation of the Universal Machine

This commit is contained in:
Dimitri Lozeve 2021-01-11 21:15:22 +01:00
commit 13b559e275
8 changed files with 1552 additions and 0 deletions

8
Makefile Normal file
View file

@ -0,0 +1,8 @@
CC = gcc
CFLAGS = -Wall -Werror -pedantic -g
.PHONY: all
all: um
um: um.c
$(CC) $< -o $@ $(CFLAGS)