What problem does it solve? Shrinking binary assets and data for memory-constrained z80 and 8080 machines requires a compact, well-supported compressor, and manually invoking the z88dk ZX7 tool with correct flags is error-prone without a reference. ## Core Features & Use Cases - ZX7 Compression: Runs the host-side z88dk-zx7 compressor implementing Einar Saukas' optimal LZ77/LZSS algorithm. - Backwards Compression: Supports the -b flag to compress backwards and -f to force overwriting existing output files. - Use Case: When building a ZX Spectrum game with z88dk, compress level data or graphics with z88dk-zx7 input.bin output.zx7, then decompress on-device using the matching dzx7 library routines. ## Quick Start Compress the file assets.bin with ZX7 by running z88dk-zx7 assets.bin assets.zx7, forcing overwrite if the output already exists.