├── LICENSE ├── README.md ├── img └── TurigMachine.png └── src ├── .gitignore ├── compiler.py ├── examples ├── Bracket Sequence │ ├── README.md │ ├── img │ │ └── Bracket_Sequence.gif │ └── src │ │ └── turing_code.txt ├── Double Ones │ ├── README.md │ ├── img │ │ └── Double_Ones.gif │ └── src │ │ └── turing_code.txt ├── README.md └── Right Shift │ ├── README.md │ ├── img │ └── Right_shift.gif │ └── src │ └── turing_code.txt ├── input.txt ├── main.py ├── requirements.txt └── turing_code.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/README.md -------------------------------------------------------------------------------- /img/TurigMachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/img/TurigMachine.png -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /src/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/src/compiler.py -------------------------------------------------------------------------------- /src/examples/Bracket Sequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/src/examples/Bracket Sequence/README.md -------------------------------------------------------------------------------- /src/examples/Bracket Sequence/img/Bracket_Sequence.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/src/examples/Bracket Sequence/img/Bracket_Sequence.gif -------------------------------------------------------------------------------- /src/examples/Bracket Sequence/src/turing_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/src/examples/Bracket Sequence/src/turing_code.txt -------------------------------------------------------------------------------- /src/examples/Double Ones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/src/examples/Double Ones/README.md -------------------------------------------------------------------------------- /src/examples/Double Ones/img/Double_Ones.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/src/examples/Double Ones/img/Double_Ones.gif -------------------------------------------------------------------------------- /src/examples/Double Ones/src/turing_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/src/examples/Double Ones/src/turing_code.txt -------------------------------------------------------------------------------- /src/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/src/examples/README.md -------------------------------------------------------------------------------- /src/examples/Right Shift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/src/examples/Right Shift/README.md -------------------------------------------------------------------------------- /src/examples/Right Shift/img/Right_shift.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/src/examples/Right Shift/img/Right_shift.gif -------------------------------------------------------------------------------- /src/examples/Right Shift/src/turing_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/src/examples/Right Shift/src/turing_code.txt -------------------------------------------------------------------------------- /src/input.txt: -------------------------------------------------------------------------------- 1 | Write your input data here -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tivole/Turing-Machine/HEAD/src/main.py -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- 1 | pygame -------------------------------------------------------------------------------- /src/turing_code.txt: -------------------------------------------------------------------------------- 1 | # Write your code here --------------------------------------------------------------------------------