From 2f706d73c814fc69d6a54e76082e0e58341a3f87 Mon Sep 17 00:00:00 2001 From: d_m Date: Sat, 11 Nov 2023 14:12:41 -0500 Subject: [PATCH] incremental progress --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7dabca0..614ee27 100644 --- a/README.md +++ b/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