nlzss - (de)compression with Nintendo's LZSS format
CLI Usage
Compress
cat file | nlzss compress > file.bin
Instead of compress you can also use the c shorthand. To specify the
algorithm to use, add --level 11 (default) or --level 10.
Decompress
cat file.bin | nlzss decompress > file
Instead of decompress you can also use the d shorthand.
References
- nintendo-lz - The codebase was heavily inspired by this
- nzlss[]