diff options
author | Kartik Agaram <vc@akkartik.com> | 2021-01-03 22:38:41 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2021-01-03 22:38:41 -0800 |
commit | 6dc972270481bc9f1a81f5119c5f0fa7e98a76ad (patch) | |
tree | fa07b400833b4d436722db8af76b807ffc67cf1b /mu_instructions | |
parent | cb13d947404e44d23ad0dd51641523be530a8dff (diff) | |
download | mu-6dc972270481bc9f1a81f5119c5f0fa7e98a76ad.tar.gz |
7478
Diffstat (limited to 'mu_instructions')
-rw-r--r-- | mu_instructions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mu_instructions b/mu_instructions index a5336070..945528ad 100644 --- a/mu_instructions +++ b/mu_instructions @@ -8,7 +8,7 @@ include nested expressions. Variables can be literals ('n'), or live in a register ('var/reg') or in memory ('var') at some 'stack-offset' from the 'ebp' register. Outputs must be registers. To modify a variable in memory, pass it in by reference as an input. (Inputs are more precisely called 'inouts'.) -Conversely, registers that are just read from must not be passed as inputs. +Conversely, registers that are just read from must not be passed as outputs. The following chart shows all the instruction forms supported by Mu, along with the SubX instruction they're translated to. |