about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-06-07 15:43:13 -0700
committerKartik Agaram <vc@akkartik.com>2020-06-07 15:43:13 -0700
commit64bf0e8b972e9d89b7dd8aeceac418f9e372dcc6 (patch)
tree0d4dc0660d6b090a85fe76efe1e56e63b3541868
parente2e0f5cce7e6543dc43112034385ed29ff247032 (diff)
downloadmu-64bf0e8b972e9d89b7dd8aeceac418f9e372dcc6.tar.gz
6499
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 8243d29d..aad6253d 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ Running the code you want to run, and nothing else.
 Mu requires just a Unix-like OS and nothing else. The Mu translator is built
 up from machine code. You can also bootstrap it from C++. Both C++ and
 self-hosted versions emit identical binaries. The generated binaries require
-just a Unix-like kernel and nothing else. (There are more details in [this paper](http://akkartik.name/akkartik-convivial-20200315.pdf).)
+just a Unix-like kernel and nothing else. (There are more details in [this paper](http://akkartik.name/akkartik-convivial-20200607.pdf).)
 
 ## Goals
 
@@ -69,7 +69,7 @@ variables. Most 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`. [The paper](http://akkartik.name/akkartik-convivial-20200315.pdf) has
+`ebx`. [The paper](http://akkartik.name/akkartik-convivial-20200607.pdf) has
 more details, and there's a [summary](mu_summary) of all supported instructions.
 
 ## SubX