diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-12-10 23:38:14 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-12-10 23:38:14 -0800 |
commit | afa6e18b1b7d7cf992c1582731705403fc8f0dda (patch) | |
tree | 600d2251f889f404865186e44718aa6e4e793ac3 /subx | |
parent | 3d4fba4d12030c0c872d0bec3a542f16a554d386 (diff) | |
download | mu-afa6e18b1b7d7cf992c1582731705403fc8f0dda.tar.gz |
4866
Diffstat (limited to 'subx')
-rw-r--r-- | subx/Readme.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/subx/Readme.md b/subx/Readme.md index bf429465..eab5b27c 100644 --- a/subx/Readme.md +++ b/subx/Readme.md @@ -17,9 +17,9 @@ $ ./subx # print out a help message Expanding on the first bullet, it hopes to support more comprehensive tests by: -0. Running generated binaries in _emulated mode_. It's slower than native - execution (which will also work), but there's more sanity checking, and - more descriptive error messages for common low-level problems. +0. Running generated binaries in _emulated mode_. Emulated mode is slower than + native execution (which will also work), but there's more sanity checking, + and more descriptive error messages for common low-level problems. ``` $ ./subx translate examples/ex1.subx -o examples/ex1 @@ -51,9 +51,9 @@ by: opcodes and vice versa. So this is a useful check. 1. Designing testable wrappers for operating system interfaces. For example, - it can `read()` from or `write()` to fake in-memory files in tests. We'll - gradually port ideas for other syscalls from [the old Mu VM in the parent - directory](https://github.com/akkartik/mu). + it can `read()` from or `write()` to fake in-memory files in tests. More + details [below](#subx-library). We are continuing to port syscalls from + [the old Mu VM in the parent directory](https://github.com/akkartik/mu). 2. Supporting a special _trace_ stream in addition to the default `stdin`, `stdout` and `stderr` streams. The trace stream is designed for programs to |