#! /bin/bash

# 8086 Assembly LZ4/LZSA2/LZSA1 depacker test mak script
# by E. C. Masloch, 2022, 2026

# Usage of the works is permitted provided that this
# instrument is retained with the works, so that any entity
# that uses the works is notified of this instrument.
#
# DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY.

lz4c -9zfk -hc lz4.asm payload.lz4
# lz4 -12zfk lz4.asm payload.lz4
lzsa -N -S -c -f 2 --prefer-ratio -v lz4.asm payload.sa2
lzsa -N -S -c -f 1 --prefer-ratio -v lz4.asm payload.sa1
nasm test.asm -o test.com -l test.lst "$@"
