An open API service indexing awesome lists of open source software.

https://github.com/clownacy/accurate-kosinski

Kosinski compressor that aims to produce identical output to Sega's original.
https://github.com/clownacy/accurate-kosinski

compression compressor lzss reverse-engineering sega sega-genesis sega-mega-drive

Last synced: about 4 hours ago
JSON representation

Kosinski compressor that aims to produce identical output to Sega's original.

Awesome Lists containing this project

README

          

This is a library for compressing and decompressing files in Sega's "Kosinski"
format (an LZSS variant). The goal is to produce a compressor that outputs data
identical to Sega's own compressor. Moduled Kosinski is also supported.

https://segaretro.org/Kosinski_compression

Included are basic frontends for a compressor, a decompressor, and a comparison
utility.

Sega's compressor had a fair few bugs, causing it to produce files with
a sub-optimal compression ratio. Lucky, none of these issues harm the integrity
of the compressed data. See `lib/kosinski-compress.c` for more info.