A simple and portable Turing Machine simulator
Přejít na soubor
Maurizio Porrato 27950453e3 Fix segfault in table_lookup() on an empty table 2020-09-05 08:45:35 +01:00
samples First commit 2020-09-04 11:05:16 +01:00
.gitignore First commit 2020-09-04 11:05:16 +01:00
Makefile First commit 2020-09-04 11:05:16 +01:00
program.c First commit 2020-09-04 11:05:16 +01:00
program.h First commit 2020-09-04 11:05:16 +01:00
readme.md First commit 2020-09-04 11:05:16 +01:00
table.c Fix segfault in table_lookup() on an empty table 2020-09-05 08:45:35 +01:00
table.h First commit 2020-09-04 11:05:16 +01:00
tape.c First commit 2020-09-04 11:05:16 +01:00
tape.h First commit 2020-09-04 11:05:16 +01:00
turing.c First commit 2020-09-04 11:05:16 +01:00

readme.md

A simple and portable Turing Machine simulator

This code should build cleanly on any POSIX OS using a C99 compliant C compiler.

The goal of this project is to be easily understandable and hackable, and is not meant to be efficient.