├── .gitattributes ├── README.md ├── doc ├── console.jpg ├── hardware.pdf ├── inside.jpg └── screen.jpg ├── hardware ├── hardware-cache.lib ├── hardware.bak ├── hardware.kicad_pcb ├── hardware.pro └── hardware.sch └── tetris ├── artwork_tiles.h ├── av.cpp ├── av.h ├── musictrack.cpp ├── musictrack.h ├── tetris.ino └── tetris_tiles.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/README.md -------------------------------------------------------------------------------- /doc/console.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/doc/console.jpg -------------------------------------------------------------------------------- /doc/hardware.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/doc/hardware.pdf -------------------------------------------------------------------------------- /doc/inside.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/doc/inside.jpg -------------------------------------------------------------------------------- /doc/screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/doc/screen.jpg -------------------------------------------------------------------------------- /hardware/hardware-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/hardware/hardware-cache.lib -------------------------------------------------------------------------------- /hardware/hardware.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/hardware/hardware.bak -------------------------------------------------------------------------------- /hardware/hardware.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/hardware/hardware.kicad_pcb -------------------------------------------------------------------------------- /hardware/hardware.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/hardware/hardware.pro -------------------------------------------------------------------------------- /hardware/hardware.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/hardware/hardware.sch -------------------------------------------------------------------------------- /tetris/artwork_tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/tetris/artwork_tiles.h -------------------------------------------------------------------------------- /tetris/av.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/tetris/av.cpp -------------------------------------------------------------------------------- /tetris/av.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/tetris/av.h -------------------------------------------------------------------------------- /tetris/musictrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/tetris/musictrack.cpp -------------------------------------------------------------------------------- /tetris/musictrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/tetris/musictrack.h -------------------------------------------------------------------------------- /tetris/tetris.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/tetris/tetris.ino -------------------------------------------------------------------------------- /tetris/tetris_tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0pperdragon/ArduinoGameConsole/HEAD/tetris/tetris_tiles.h --------------------------------------------------------------------------------