├── .gitignore ├── Makefile ├── README.md ├── config.h ├── entry.asm ├── linker.ld ├── menu.lst ├── screenshot.png ├── stage2_eltorito └── tetris.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programble/bare-metal-tetris/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programble/bare-metal-tetris/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programble/bare-metal-tetris/HEAD/README.md -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programble/bare-metal-tetris/HEAD/config.h -------------------------------------------------------------------------------- /entry.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programble/bare-metal-tetris/HEAD/entry.asm -------------------------------------------------------------------------------- /linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programble/bare-metal-tetris/HEAD/linker.ld -------------------------------------------------------------------------------- /menu.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programble/bare-metal-tetris/HEAD/menu.lst -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programble/bare-metal-tetris/HEAD/screenshot.png -------------------------------------------------------------------------------- /stage2_eltorito: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programble/bare-metal-tetris/HEAD/stage2_eltorito -------------------------------------------------------------------------------- /tetris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programble/bare-metal-tetris/HEAD/tetris.c --------------------------------------------------------------------------------