40 lines
901 B
Bash
Executable File
40 lines
901 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
RELEASE_flags="-DNDEBUG -O2 -g0 -s"
|
|
DEBUG_flags="-std=c89 -D_POSIX_C_SOURCE=199309L -DDEBUG -Wall -Wno-unknown-pragmas -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined"
|
|
|
|
|
|
LIN="uxncli $HOME/roms/uxnlin.rom"
|
|
ASM="uxncli $HOME/roms/drifblim.rom"
|
|
|
|
if [[ "$*" == *"--lint"* ]]
|
|
then
|
|
$LIN decoder.tal
|
|
clang-format -i lz_main.c
|
|
clang-format -i ulzcdec.c
|
|
fi
|
|
|
|
# Make c file
|
|
|
|
cc lz_main.c -o main && ./main && ./main # read example.txt, write compressed.bin
|
|
|
|
# Decoding
|
|
|
|
$ASM decoder.tal decoder.rom
|
|
uxncli decoder.rom compressed.bin decompressed.txt
|
|
|
|
rm ./main
|
|
rm ./compressed.bin
|
|
rm ./decompressed.txt
|
|
|
|
# Encoding
|
|
|
|
$ASM encoder.tal encoder.rom
|
|
uxncli encoder.rom example-small.txt recompressed.bin
|
|
|
|
# Redecoding
|
|
|
|
uxncli decoder.rom recompressed.bin redecoded.txt
|
|
|
|
cat redecoded.txt
|