├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── s6prog.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveyliam/spartan6_programmer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveyliam/spartan6_programmer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveyliam/spartan6_programmer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveyliam/spartan6_programmer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveyliam/spartan6_programmer/HEAD/README.md -------------------------------------------------------------------------------- /s6prog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveyliam/spartan6_programmer/HEAD/s6prog.c --------------------------------------------------------------------------------