├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── debug_macros.asm ├── dev ├── additional_features.asm └── bricks.txt ├── screenshots ├── code.png └── tetros_tetris_screenshot.png ├── tetros.asm └── tetros.img /.gitignore: -------------------------------------------------------------------------------- 1 | mbr.img 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-e/tetros/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-e/tetros/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-e/tetros/HEAD/README.md -------------------------------------------------------------------------------- /debug_macros.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-e/tetros/HEAD/debug_macros.asm -------------------------------------------------------------------------------- /dev/additional_features.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-e/tetros/HEAD/dev/additional_features.asm -------------------------------------------------------------------------------- /dev/bricks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-e/tetros/HEAD/dev/bricks.txt -------------------------------------------------------------------------------- /screenshots/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-e/tetros/HEAD/screenshots/code.png -------------------------------------------------------------------------------- /screenshots/tetros_tetris_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-e/tetros/HEAD/screenshots/tetros_tetris_screenshot.png -------------------------------------------------------------------------------- /tetros.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-e/tetros/HEAD/tetros.asm -------------------------------------------------------------------------------- /tetros.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-e/tetros/HEAD/tetros.img --------------------------------------------------------------------------------