determ/README.md

37 lines
691 B
Markdown
Raw Permalink Normal View History

2023-11-10 11:44:37 -05:00
# determ
terminal emulator for the uxn system.
(TODO: improve this readme)
## quick start
2023-11-11 14:12:41 -05:00
using a python shim program:
2023-11-10 11:44:37 -05:00
```
uxnasm term.tal term.rom
python.py term.py term.rom
```
2023-11-11 14:12:41 -05:00
or alternately a C shim program:
2023-11-10 11:44:37 -05:00
```
2023-11-11 14:12:41 -05:00
uxnasm term.tal term.rom
2023-11-10 11:44:37 -05:00
gcc term.c -c term
./term term.rom
```
2023-11-10 12:04:46 -05:00
2023-11-11 14:12:41 -05:00
or alternately uxn11's experimental subprocess support:
```
uxnasm term.tal term.rom
uxn11 term.rom
```
2023-11-10 12:04:46 -05:00
## files
* `term.py` - bootstrapping program for running `term.rom` via python
* `term.c` - bootstrapping program from running `term.rom` via c
* `process.patch` - experimental patch adding *nix subprocess management to the console device
* `determ.terminfo` - wip terminfo definition for determ