Plan: Boot-/Intro-Sequenz als erster Python-Meilenstein, tfmx_player-Referenz gesichert

This commit is contained in:
ARIA
2026-07-22 15:36:09 +00:00
parent 3410a53ee7
commit 3622bd0a1a
7 changed files with 3657 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
# Builds render_tfmx, a tiny standalone harness around tfmx.h (see NOTICE.md
# in this directory for provenance/license). Produces ./render_tfmx which
# takes <mdat.tfx> <smpl.sam> <out.wav> [seconds] and writes a stereo
# 16-bit/44100Hz WAV rendering of the TFMX module.
set -e
cd "$(dirname "$0")"
gcc -std=gnu99 -O2 -Wall -Wno-unused-function -Wno-unused-variable -Wno-unused-parameter \
-o render_tfmx render_tfmx.c -lm
echo "built: $(dirname "$0")/render_tfmx"