Add openmpt inst, fix/add links

ABelliqueux 2021-10-29 14:27:33 +02:00
parent 6e8c7fc3e0
commit 3305b4b1e7

9
MOD.md

@ -59,4 +59,11 @@ MOD_PlayNote( voiceID, sampleID, note, volume);
MODs use 4 channels, which are mapped to the four first voices of the SPU by default. When calling `MOD_PlayNote()`, you should use voices > 4.
See [here](https://github.com/ABelliqueux/nolibgs_hello_worlds/tree/main/hello_mod) for a complete example.
See [here](https://github.com/ABelliqueux/nolibgs_hello_worlds/tree/main/hello_mod) for a complete example.
## Sources & Docs
Nicolas Noble's modplayer : [https://github.com/grumpycoders/pcsx-redux/tree/main/src/mips/modplayer](https://github.com/grumpycoders/pcsx-redux/tree/main/src/mips/modplayer)
MOD format specification : [http://www.aes.id.au/modformat.html](http://www.aes.id.au/modformat.html)
Hitmen's original modplayer : [http://hitmen.c02.at/files/releases/psx/hit-asm-mod.zip](http://hitmen.c02.at/files/releases/psx/hit-asm-mod.zip)
Hitmen's MODCONV utility : [http://hitmen.c02.at/files/releases/psx/hit-hitmod15.zip](http://hitmen.c02.at/files/releases/psx/hit-hitmod15.zip)