This commit is contained in:
2025-07-20 15:50:48 -04:00
parent 5ea2f16ba9
commit 41cfafbaf0
10 changed files with 221 additions and 66 deletions

10
tools/gen-embed-header Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/env bash
files=./embed/*
touch embed_header.h
echo "" > embed_header.h
for f in $files; do
xxd -i >> embed_header.h
done