about summary refs log tree commit diff stats
path: root/README.md
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-31 18:39:27 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-31 18:55:37 -0800
commitaeac1e061d72442d919b4727a72f6af5fbb983a5 (patch)
treef99fdc7e54c158fd3f254138e7322292ce356c34 /README.md
parent4bb0b7e93f3131556325039f02f864bd8ae7683c (diff)
downloadmu-aeac1e061d72442d919b4727a72f6af5fbb983a5.tar.gz
5966 - document all supported Mu instructions
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index b9ebf52c..d0bb5992 100644
--- a/README.md
+++ b/README.md
@@ -66,7 +66,8 @@ statements in Mu translate to a single machine code instruction. 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 `ebx`. [This post](http://akkartik.name/post/mu-2019-2)
-has more details.
+has more details. You can see a complete list of supported instructions and
+their translations in [this summary](mu_instructions).
 
 ## SubX
 
@@ -717,7 +718,7 @@ a) Try running the tests: `./test_apps`
 b) Check out the online help. Starting point: `./bootstrap`
 
 c) Familiarize yourself with `./bootstrap help opcodes`. If you program in Mu
-you'll spend a lot of time with it. (It's also [in this repo](https://github.com/akkartik/mu/blob/master/opcodes).)
+you'll spend a lot of time with it. (It's also [in this repo](https://github.com/akkartik/mu/blob/master/subx_opcodes).)
 [Here](https://lobste.rs/s/qglfdp/subx_minimalist_assembly_language_for#c_o9ddqk)
 are some tips on my setup for quickly finding the right opcode for any
 situation from within Vim.