├── LICENSE ├── README.md ├── ansi.asm ├── board.asm ├── board2.asm ├── compiled ├── life.hex └── life.z80 ├── data.asm ├── debugging.asm ├── life.asm ├── life.hex ├── life.sym ├── life.z80 ├── tests ├── coordinates.xlsx ├── general algorithm.txt └── test.py └── utils.asm /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/README.md -------------------------------------------------------------------------------- /ansi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/ansi.asm -------------------------------------------------------------------------------- /board.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/board.asm -------------------------------------------------------------------------------- /board2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/board2.asm -------------------------------------------------------------------------------- /compiled/life.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/compiled/life.hex -------------------------------------------------------------------------------- /compiled/life.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/compiled/life.z80 -------------------------------------------------------------------------------- /data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/data.asm -------------------------------------------------------------------------------- /debugging.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/debugging.asm -------------------------------------------------------------------------------- /life.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/life.asm -------------------------------------------------------------------------------- /life.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/life.hex -------------------------------------------------------------------------------- /life.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/life.sym -------------------------------------------------------------------------------- /life.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/life.z80 -------------------------------------------------------------------------------- /tests/coordinates.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/tests/coordinates.xlsx -------------------------------------------------------------------------------- /tests/general algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/tests/general algorithm.txt -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/tests/test.py -------------------------------------------------------------------------------- /utils.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ncot-tech/z80-life/HEAD/utils.asm --------------------------------------------------------------------------------