diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-01-01 16:45:30 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-01-01 16:45:30 -0800 |
commit | 23fd294d85959c6b476bcdc35ed6ad508cc99b8f (patch) | |
tree | 871b6acf17c37797f83c134c5ccab2fba77ab666 /test_apps | |
parent | 7ca19e4e1d3acb2c770c180156b813fb536a673e (diff) | |
download | mu-23fd294d85959c6b476bcdc35ed6ad508cc99b8f.tar.gz |
5851
Rename a few scripts to be more consistent. I'm also starting to feel the urge to bud off `subx run` into its own program, say tools/emulate_x86. It doesn't really rely on the SubX notation at all. And then I could rename `subx translate` to `translate_subx_bootstrap`. Only problem: the commands in the Readme get verbose. But the Readme is gonna need surgery soon anyway to put translate_mu front and center.
Diffstat (limited to 'test_apps')
-rwxr-xr-x | test_apps | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test_apps b/test_apps index 9d32fc6b..b9b22db1 100755 --- a/test_apps +++ b/test_apps @@ -304,7 +304,7 @@ echo "== translating using SubX (native only)" for n in `seq 1 12` do echo ex$n - ./ntranslate init.$OS examples/ex$n.subx + ./translate_subx init.$OS examples/ex$n.subx diff examples/ex$n a.elf done @@ -313,7 +313,7 @@ done for app in factorial crenshaw2-1 crenshaw2-1b handle do echo $app - ./ntranslate init.$OS 0*.subx apps/$app.subx + ./translate_subx init.$OS 0*.subx apps/$app.subx diff apps/$app a.elf done @@ -322,13 +322,13 @@ done for app in hex survey pack assort dquotes tests sigils calls braces do echo $app - ./ntranslate init.$OS 0*.subx apps/subx-params.subx apps/$app.subx + ./translate_subx init.$OS 0*.subx apps/subx-params.subx apps/$app.subx diff apps/$app a.elf done # Mu translator echo mu -./ntranslate init.$OS 0*.subx apps/mu.subx +./translate_subx init.$OS 0*.subx apps/mu.subx diff apps/mu a.elf exit 0 |