Skip to content

Commit f09e0dd

Browse files
committed
Restructured repo a bit
1 parent eb318a4 commit f09e0dd

9 files changed

+191
-32
lines changed

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
WORK IN PROGRESS
3+
----------------
4+
5+
C turing machine simulator
6+
--------------------------
7+
8+
A tiny turing machine simulator, written in C.
9+
10+
Author
11+
------
12+
13+
+ A.J. Rouvoet
14+

examples/strcmp.t

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
16
2+
q1
3+
q2
4+
q3
5+
q4
6+
q5
7+
q6
8+
q7
9+
q8
10+
q9
11+
q10
12+
q11
13+
q12
14+
q13
15+
q14
16+
q_accept A
17+
q_reject R
18+
q1 0 -> q2 x R
19+
q1 1 -> q3 x R
20+
q1 # -> q8 \ R
21+
q2 0 -> q2 \ R
22+
q2 1 -> q2 \ R
23+
q2 # -> q4 \ R
24+
q3 0 -> q3 \ R
25+
q3 1 -> q3 \ R
26+
q3 # -> q5 \ R
27+
q4 0 -> q6 x L
28+
q4 x -> q4 \ R
29+
q5 x -> q5 \ R
30+
q5 1 -> q6 x L
31+
q6 0 -> q6 \ L
32+
q6 1 -> q6 \ L
33+
q6 x -> q6 \ L
34+
q6 # -> q7 \ L
35+
q7 0 -> q7 \ L
36+
q7 1 -> q7 \ L
37+
q7 x -> q1 \ R
38+
q8 x -> q8 \ R
39+
q8 _ -> q_accept \ R

errors.c src/errors.c

File renamed without changes.

errors.h src/errors.h

File renamed without changes.

makefile src/makefile

File renamed without changes.

0 commit comments

Comments
 (0)