incremental progress

This commit is contained in:
~d6 2023-11-11 14:12:41 -05:00
parent 7a32a37ff9
commit 2f706d73c8
1 changed files with 11 additions and 1 deletions

View File

@ -6,18 +6,28 @@ terminal emulator for the uxn system.
## quick start ## quick start
using a python shim program:
``` ```
uxnasm term.tal term.rom uxnasm term.tal term.rom
python.py term.py term.rom python.py term.py term.rom
``` ```
or alternately: or alternately a C shim program:
``` ```
uxnasm term.tal term.rom
gcc term.c -c term gcc term.c -c term
./term term.rom ./term term.rom
``` ```
or alternately uxn11's experimental subprocess support:
```
uxnasm term.tal term.rom
uxn11 term.rom
```
## files ## files
* `term.py` - bootstrapping program for running `term.rom` via python * `term.py` - bootstrapping program for running `term.rom` via python