about summary refs log tree commit diff stats
path: root/mu_instructions
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-01-03 22:38:41 -0800
committerKartik Agaram <vc@akkartik.com>2021-01-03 22:38:41 -0800
commit6dc972270481bc9f1a81f5119c5f0fa7e98a76ad (patch)
treefa07b400833b4d436722db8af76b807ffc67cf1b /mu_instructions
parentcb13d947404e44d23ad0dd51641523be530a8dff (diff)
downloadmu-6dc972270481bc9f1a81f5119c5f0fa7e98a76ad.tar.gz
7478
Diffstat (limited to 'mu_instructions')
-rw-r--r--mu_instructions2
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.