diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-03-27 09:07:04 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-03-27 09:07:04 -0700 |
commit | 6efd1778e195cbadb71fbb718e182e229e5dff40 (patch) | |
tree | b690b6c4ebfd0088d8c1c41f7b4591bdea184feb | |
parent | cbec147d3b3c1f7ff7543755b02c08c648cc986f (diff) | |
download | mu-6efd1778e195cbadb71fbb718e182e229e5dff40.tar.gz |
6174
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md index f5962d33..ff5508a5 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ checks. Here's the program we translated above: <img alt='ex2.mu' src='html/ex2.mu.png'> There are no expressions; functions consist of only statements that operate on -variables. Most statements in Mu translate to [a single machine code instruction](http://akkartik.github.io/mu/html/mu_instructions.html). +variables. Most statements in Mu translate to [a single machine-code instruction](http://akkartik.github.io/mu/html/mu_instructions.html). Variables reside in memory by default. Programs must specify registers when they want to use them. Functions must return results in registers. Execution begins at the function `main`, which always returns its result in register |