Initial commit: implementation of the Universal Machine
This commit is contained in:
commit
13b559e275
8 changed files with 1552 additions and 0 deletions
8
Makefile
Normal file
8
Makefile
Normal file
|
@ -0,0 +1,8 @@
|
|||
CC = gcc
|
||||
CFLAGS = -Wall -Werror -pedantic -g
|
||||
|
||||
.PHONY: all
|
||||
all: um
|
||||
|
||||
um: um.c
|
||||
$(CC) $< -o $@ $(CFLAGS)
|
Loading…
Add table
Add a link
Reference in a new issue