diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-03-04 00:27:57 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-03-04 00:27:57 -0800 |
commit | 57c3617ef6570b1499270f9b2b498b5bbb3220ea (patch) | |
tree | c4cb7f42b3e5254814324a83110fd5d0cdae3988 | |
parent | b964fa586faee7d1c8e3e9ed7f52e08f3ab2d267 (diff) | |
download | mu-57c3617ef6570b1499270f9b2b498b5bbb3220ea.tar.gz |
7848
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md index 834cb158..3a6ef467 100644 --- a/README.md +++ b/README.md @@ -104,11 +104,11 @@ Mu programs can be written for two very different environments: virtual memory, no process separation, no multi-tasking, no persistent storage, no network. -* The top-level is built using tools created under the linux/ sub-directory. +* The top-level is built using tools created under the `linux/` sub-directory. This sub-directory contains an entirely separate set of standard libraries intended for building programs that run with just a Linux kernel, reading from stdin and writing to stdout. The Mu compiler is such a program, at - linux/mu.subx. + `linux/mu.subx`. While I currently focus on programs without an OS, the `linux/` sub-directory is fairly ergonomic. There's a couple of dozen example programs to try out |