├── .editorconfig ├── .gitattributes ├── out └── rom.bin └── src ├── boot ├── rom_head.c └── sega.s ├── main.c ├── poly.c └── poly.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anael-seghezzi/SGDK_2colors/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anael-seghezzi/SGDK_2colors/HEAD/.gitattributes -------------------------------------------------------------------------------- /out/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anael-seghezzi/SGDK_2colors/HEAD/out/rom.bin -------------------------------------------------------------------------------- /src/boot/rom_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anael-seghezzi/SGDK_2colors/HEAD/src/boot/rom_head.c -------------------------------------------------------------------------------- /src/boot/sega.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anael-seghezzi/SGDK_2colors/HEAD/src/boot/sega.s -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anael-seghezzi/SGDK_2colors/HEAD/src/main.c -------------------------------------------------------------------------------- /src/poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anael-seghezzi/SGDK_2colors/HEAD/src/poly.c -------------------------------------------------------------------------------- /src/poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anael-seghezzi/SGDK_2colors/HEAD/src/poly.h --------------------------------------------------------------------------------