├── README.md ├── assembly.py ├── computer.mc ├── doc ├── doc(en).odt ├── doc(en).pdf ├── doc(fr).odt ├── doc(fr).pdf └── screenshot.png ├── logic gates ├── and.mc ├── bifurcation.mc ├── nor.mc ├── not.mc ├── or.mc └── xor.mc └── tools ├── decamaker.py ├── delaymaker.py └── reflecteur.mc /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/README.md -------------------------------------------------------------------------------- /assembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/assembly.py -------------------------------------------------------------------------------- /computer.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/computer.mc -------------------------------------------------------------------------------- /doc/doc(en).odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/doc/doc(en).odt -------------------------------------------------------------------------------- /doc/doc(en).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/doc/doc(en).pdf -------------------------------------------------------------------------------- /doc/doc(fr).odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/doc/doc(fr).odt -------------------------------------------------------------------------------- /doc/doc(fr).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/doc/doc(fr).pdf -------------------------------------------------------------------------------- /doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/doc/screenshot.png -------------------------------------------------------------------------------- /logic gates/and.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/logic gates/and.mc -------------------------------------------------------------------------------- /logic gates/bifurcation.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/logic gates/bifurcation.mc -------------------------------------------------------------------------------- /logic gates/nor.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/logic gates/nor.mc -------------------------------------------------------------------------------- /logic gates/not.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/logic gates/not.mc -------------------------------------------------------------------------------- /logic gates/or.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/logic gates/or.mc -------------------------------------------------------------------------------- /logic gates/xor.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/logic gates/xor.mc -------------------------------------------------------------------------------- /tools/decamaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/tools/decamaker.py -------------------------------------------------------------------------------- /tools/delaymaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/tools/delaymaker.py -------------------------------------------------------------------------------- /tools/reflecteur.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolasloizeau/gol-computer/HEAD/tools/reflecteur.mc --------------------------------------------------------------------------------