├── .gitignore ├── LICENSE ├── README.md ├── TCCONFIG.TC ├── breakout.prj ├── game.c ├── gif.c ├── gif.h ├── mouse.c ├── mouse.h ├── root42-0.gif ├── root42-1.gif ├── root42-2.gif ├── root42-3.gif ├── root42-a.gif ├── root42-b.gif ├── root42.gif ├── run-1.gif ├── run-2.gif ├── run-3.gif ├── run-4.gif ├── run.gif ├── sb.c ├── sb.h ├── test.gif ├── types.h ├── vga.c └── vga.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/README.md -------------------------------------------------------------------------------- /TCCONFIG.TC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/TCCONFIG.TC -------------------------------------------------------------------------------- /breakout.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/breakout.prj -------------------------------------------------------------------------------- /game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/game.c -------------------------------------------------------------------------------- /gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/gif.c -------------------------------------------------------------------------------- /gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/gif.h -------------------------------------------------------------------------------- /mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/mouse.c -------------------------------------------------------------------------------- /mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/mouse.h -------------------------------------------------------------------------------- /root42-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/root42-0.gif -------------------------------------------------------------------------------- /root42-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/root42-1.gif -------------------------------------------------------------------------------- /root42-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/root42-2.gif -------------------------------------------------------------------------------- /root42-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/root42-3.gif -------------------------------------------------------------------------------- /root42-a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/root42-a.gif -------------------------------------------------------------------------------- /root42-b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/root42-b.gif -------------------------------------------------------------------------------- /root42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/root42.gif -------------------------------------------------------------------------------- /run-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/run-1.gif -------------------------------------------------------------------------------- /run-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/run-2.gif -------------------------------------------------------------------------------- /run-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/run-3.gif -------------------------------------------------------------------------------- /run-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/run-4.gif -------------------------------------------------------------------------------- /run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/run.gif -------------------------------------------------------------------------------- /sb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/sb.c -------------------------------------------------------------------------------- /sb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/sb.h -------------------------------------------------------------------------------- /test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/test.gif -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/types.h -------------------------------------------------------------------------------- /vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/vga.c -------------------------------------------------------------------------------- /vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root42/letscode-breakout/HEAD/vga.h --------------------------------------------------------------------------------