Making project compliant with REUSE specification

This commit is contained in:
A.M. Rowsell 2025-12-29 14:28:40 -05:00
commit 02d9b49e60
Signed by: amr
GPG key ID: E0879EDBDB0CA7B1
3 changed files with 389 additions and 0 deletions

12
README.md Normal file
View file

@ -0,0 +1,12 @@
<!--
SPDX-FileCopyrightText: 2025 (c) A.M. Rowsell
SPDX-License-Identifier: MPL-2.0
-->
# ArrayGen
## What?
This is a little script to help automate the generation of sometimes very tedious to create arrays in C/C++. It started out because I wanted to generate BCD lookup tables for a program, and since then has expanded. I recently added the ability to generate lookup tables to unscramble bytes that have bits in the wrong position. This can be a really annoying thing to figure out by hand, but creating a simple lookup table is fast and solves the problem by trading a tiny amount of ROM for speed and simplicity.
If there are other types of sequences you'd like to generate, just make a PR or file an issue!