init repo
This commit is contained in:
commit
482862c7ba
5 changed files with 245 additions and 0 deletions
21
README.md
Normal file
21
README.md
Normal 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
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue