init repo

This commit is contained in:
Travis Shears 2026-01-06 21:41:46 +01:00
commit 482862c7ba
Signed by: travisshears
GPG key ID: CB9BF1910F3F7469
5 changed files with 245 additions and 0 deletions

21
README.md Normal file
View file

@ -0,0 +1,21 @@
# One Line
This is an art project drawing canvas tool that enables drawing low resolution
pixel images. The project includes a file specification for the drawings and a canvas
app for making the files.
## Dev
I compile and run the `.tal` file with `../my_projects/run_ui.sh one_line_canvas.tal`
The `run_ui.sh` looks like this:
```bash
#!/bin/sh
filename="${1%.*}"
rom_filename="${filename}.rom"
../uxn/bin/uxnasm $1 $rom_filename && ../uxn/bin/uxnemu $rom_filename
```