incremental progress
This commit is contained in:
parent
7a32a37ff9
commit
2f706d73c8
12
README.md
12
README.md
|
@ -6,18 +6,28 @@ terminal emulator for the uxn system.
|
|||
|
||||
## quick start
|
||||
|
||||
using a python shim program:
|
||||
|
||||
```
|
||||
uxnasm term.tal 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
|
||||
./term term.rom
|
||||
```
|
||||
|
||||
or alternately uxn11's experimental subprocess support:
|
||||
|
||||
```
|
||||
uxnasm term.tal term.rom
|
||||
uxn11 term.rom
|
||||
```
|
||||
|
||||
## files
|
||||
|
||||
* `term.py` - bootstrapping program for running `term.rom` via python
|
||||
|
|
Loading…
Reference in New Issue