├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── documents └── PSG file format.txt ├── example └── src │ └── main.asm ├── src ├── PSGlib.inc ├── PSGlib_minimal.inc └── README.md └── tools ├── Linux ├── psg2txt ├── psgcmp ├── psgcomp ├── psgcomp_ng ├── psgdecomp └── vgm2psg ├── Windows ├── psg2txt.exe ├── psgcmp.exe ├── psgcomp.exe ├── psgcomp_ng.exe ├── psgdecomp.exe └── vgm2psg.exe └── src ├── Makefile ├── growbuf.c ├── growbuf.h ├── how to compile PSGlib' tools.md ├── psg2txt.c ├── psgcmp.c ├── psgcomp.c ├── psgcomp_ng.c ├── psgcompress.c ├── psgcompress.h ├── psgdecomp.c └── vgm2psg.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/README.md -------------------------------------------------------------------------------- /documents/PSG file format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/documents/PSG file format.txt -------------------------------------------------------------------------------- /example/src/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/example/src/main.asm -------------------------------------------------------------------------------- /src/PSGlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/src/PSGlib.inc -------------------------------------------------------------------------------- /src/PSGlib_minimal.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/src/PSGlib_minimal.inc -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/src/README.md -------------------------------------------------------------------------------- /tools/Linux/psg2txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/Linux/psg2txt -------------------------------------------------------------------------------- /tools/Linux/psgcmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/Linux/psgcmp -------------------------------------------------------------------------------- /tools/Linux/psgcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/Linux/psgcomp -------------------------------------------------------------------------------- /tools/Linux/psgcomp_ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/Linux/psgcomp_ng -------------------------------------------------------------------------------- /tools/Linux/psgdecomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/Linux/psgdecomp -------------------------------------------------------------------------------- /tools/Linux/vgm2psg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/Linux/vgm2psg -------------------------------------------------------------------------------- /tools/Windows/psg2txt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/Windows/psg2txt.exe -------------------------------------------------------------------------------- /tools/Windows/psgcmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/Windows/psgcmp.exe -------------------------------------------------------------------------------- /tools/Windows/psgcomp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/Windows/psgcomp.exe -------------------------------------------------------------------------------- /tools/Windows/psgcomp_ng.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/Windows/psgcomp_ng.exe -------------------------------------------------------------------------------- /tools/Windows/psgdecomp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/Windows/psgdecomp.exe -------------------------------------------------------------------------------- /tools/Windows/vgm2psg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/Windows/vgm2psg.exe -------------------------------------------------------------------------------- /tools/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/src/Makefile -------------------------------------------------------------------------------- /tools/src/growbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/src/growbuf.c -------------------------------------------------------------------------------- /tools/src/growbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/src/growbuf.h -------------------------------------------------------------------------------- /tools/src/how to compile PSGlib' tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/src/how to compile PSGlib' tools.md -------------------------------------------------------------------------------- /tools/src/psg2txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/src/psg2txt.c -------------------------------------------------------------------------------- /tools/src/psgcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/src/psgcmp.c -------------------------------------------------------------------------------- /tools/src/psgcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/src/psgcomp.c -------------------------------------------------------------------------------- /tools/src/psgcomp_ng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/src/psgcomp_ng.c -------------------------------------------------------------------------------- /tools/src/psgcompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/src/psgcompress.c -------------------------------------------------------------------------------- /tools/src/psgcompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/src/psgcompress.h -------------------------------------------------------------------------------- /tools/src/psgdecomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/src/psgdecomp.c -------------------------------------------------------------------------------- /tools/src/vgm2psg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverx/PSGlib/HEAD/tools/src/vgm2psg.c --------------------------------------------------------------------------------