├── .gitignore ├── COPYING ├── LICENSE ├── Makefile ├── README.md ├── bas2tap.c └── bas2tap.doc /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | bas2tap 3 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybalaam/bas2tap/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybalaam/bas2tap/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybalaam/bas2tap/HEAD/README.md -------------------------------------------------------------------------------- /bas2tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybalaam/bas2tap/HEAD/bas2tap.c -------------------------------------------------------------------------------- /bas2tap.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybalaam/bas2tap/HEAD/bas2tap.doc --------------------------------------------------------------------------------