├── .gitignore ├── DumpOPL ├── DumpOPL.vcxproj ├── DumpOPL.vcxproj.filters ├── dump.c └── test.opb ├── LICENSE ├── OPB2WAV ├── OPB2WAV.vcxproj ├── OPB2WAV.vcxproj.filters ├── doom.opb ├── opb2wav.c └── opl.h ├── OPBinaryLib.sln ├── OPBinaryLib.vcxproj ├── OPBinaryLib.vcxproj.filters ├── OPBinarySharp ├── LICENSE ├── OPB.cs ├── OPBCommand.cs ├── OPBException.cs ├── OPBFormat.cs ├── OPBSharpTest │ ├── App.config │ ├── OPBSharpTest.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── doom.vgm ├── OPBinarySharp.csproj ├── OPBinarySharp.sln ├── Properties │ └── AssemblyInfo.cs ├── README.md └── VGM.cs ├── README.md ├── opb_file_specification.txt ├── opblib.c └── opblib.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/.gitignore -------------------------------------------------------------------------------- /DumpOPL/DumpOPL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/DumpOPL/DumpOPL.vcxproj -------------------------------------------------------------------------------- /DumpOPL/DumpOPL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/DumpOPL/DumpOPL.vcxproj.filters -------------------------------------------------------------------------------- /DumpOPL/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/DumpOPL/dump.c -------------------------------------------------------------------------------- /DumpOPL/test.opb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/DumpOPL/test.opb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/LICENSE -------------------------------------------------------------------------------- /OPB2WAV/OPB2WAV.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPB2WAV/OPB2WAV.vcxproj -------------------------------------------------------------------------------- /OPB2WAV/OPB2WAV.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPB2WAV/OPB2WAV.vcxproj.filters -------------------------------------------------------------------------------- /OPB2WAV/doom.opb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPB2WAV/doom.opb -------------------------------------------------------------------------------- /OPB2WAV/opb2wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPB2WAV/opb2wav.c -------------------------------------------------------------------------------- /OPB2WAV/opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPB2WAV/opl.h -------------------------------------------------------------------------------- /OPBinaryLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinaryLib.sln -------------------------------------------------------------------------------- /OPBinaryLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinaryLib.vcxproj -------------------------------------------------------------------------------- /OPBinaryLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinaryLib.vcxproj.filters -------------------------------------------------------------------------------- /OPBinarySharp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/LICENSE -------------------------------------------------------------------------------- /OPBinarySharp/OPB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/OPB.cs -------------------------------------------------------------------------------- /OPBinarySharp/OPBCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/OPBCommand.cs -------------------------------------------------------------------------------- /OPBinarySharp/OPBException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/OPBException.cs -------------------------------------------------------------------------------- /OPBinarySharp/OPBFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/OPBFormat.cs -------------------------------------------------------------------------------- /OPBinarySharp/OPBSharpTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/OPBSharpTest/App.config -------------------------------------------------------------------------------- /OPBinarySharp/OPBSharpTest/OPBSharpTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/OPBSharpTest/OPBSharpTest.csproj -------------------------------------------------------------------------------- /OPBinarySharp/OPBSharpTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/OPBSharpTest/Program.cs -------------------------------------------------------------------------------- /OPBinarySharp/OPBSharpTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/OPBSharpTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OPBinarySharp/OPBSharpTest/doom.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/OPBSharpTest/doom.vgm -------------------------------------------------------------------------------- /OPBinarySharp/OPBinarySharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/OPBinarySharp.csproj -------------------------------------------------------------------------------- /OPBinarySharp/OPBinarySharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/OPBinarySharp.sln -------------------------------------------------------------------------------- /OPBinarySharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OPBinarySharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/README.md -------------------------------------------------------------------------------- /OPBinarySharp/VGM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/OPBinarySharp/VGM.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/README.md -------------------------------------------------------------------------------- /opb_file_specification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/opb_file_specification.txt -------------------------------------------------------------------------------- /opblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/opblib.c -------------------------------------------------------------------------------- /opblib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enichan/OPBinaryLib/HEAD/opblib.h --------------------------------------------------------------------------------