nxu/about.txt

32 lines
1.3 KiB
Plaintext
Raw Permalink Normal View History

2022-02-07 22:57:34 -05:00
some uxn projects
this is a listing of various uxn projects i've worked on.
2022-02-07 23:00:28 -05:00
FILENAME DESCRIPTION
2022-02-07 22:57:34 -05:00
math32.tal unsigned 32-bit math routines, fairly complete and tested
2022-11-13 13:01:36 -05:00
test-math32.tal used by test-math32.py to test math32.tal
test-math32.py python testing harness for math32.tal
2022-02-07 22:57:34 -05:00
primes32.tal demo code to find 32-bit primes, shows off math32.tal
2022-11-13 13:01:36 -05:00
fix16.tal 16-bit fixed-point (8.8) support
test-fix16.tal used by test-fix16.py to test fix16.tal
test-fix16.py python testing harness for fix16.tal
2022-02-07 22:57:34 -05:00
regex.tal library code to parse and match with regular expressions
repl-regex.tal REPL to interactively play with regex.tal
test-regex.tal some testing code for regex.tal
grep.tal very simple grep program using regex.tal
2022-02-07 23:12:27 -05:00
femto.tal very early work-in-progress terminal-based editor
2022-02-08 01:16:06 -05:00
femto.txt progress and documentation for femto
2022-02-07 23:00:28 -05:00
femto launcher shell script for femto.tal
2022-02-07 23:12:27 -05:00
rainbow.tal demo to draw ANSI colors directory to the terminal
2022-02-07 23:00:28 -05:00
drums.tal very simple drum machine (non-interactive)
2022-02-07 22:57:34 -05:00
drums2.tal aleatoric version of drums.tal that adds random hits
2022-02-07 23:00:28 -05:00
bfloat16.tal very early/wip bfloat16 implementation
2022-03-13 23:28:44 -04:00
fixed.tal superseded by fix16.tal