about summary refs log tree commit diff stats
path: root/Readme.md
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-07-27 18:16:38 -0700
committerKartik Agaram <vc@akkartik.com>2019-07-27 18:16:38 -0700
commita56d969ec99ef66ab21709b3aa61d49d9a3dfd10 (patch)
treecb3ff8cd51ec71fb174d0c7dda4f6ccd4a59e48c /Readme.md
parent4f33ff22839770121c87ef8b135e6ac02eab2a46 (diff)
downloadmu-a56d969ec99ef66ab21709b3aa61d49d9a3dfd10.tar.gz
5489 - fix a few broken links
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Readme.md b/Readme.md
index b92b8fe5..89e66857 100644
--- a/Readme.md
+++ b/Readme.md
@@ -594,7 +594,7 @@ But those are big goals. Here are the syscalls I have so far:
   of clobbering outside array bounds.
 
   One bit of weirdness here: in tests we do a redundant copy from one stream
-  to another. See [the comments before the implementation](http://akkartik.github.io/mu/html/subx/058read.subx.html)
+  to another. See [the comments before the implementation](http://akkartik.github.io/mu/html/060read.subx.html)
   for a discussion of alternative interfaces.
 
 * `stop`: takes two arguments:
@@ -604,7 +604,7 @@ But those are big goals. Here are the syscalls I have so far:
   - `value` is the status code to `exit()` with.
 
   For more details on exit descriptors and how to create one, see [the
-  comments before the implementation](http://akkartik.github.io/mu/html/subx/057stop.subx.html).
+  comments before the implementation](http://akkartik.github.io/mu/html/059stop.subx.html).
 
 * `new-segment`
 
@@ -740,7 +740,7 @@ from a slice:
 ## Resources
 
 * [Single-page cheatsheet for the x86 ISA](https://net.cs.uni-bonn.de/fileadmin/user_upload/plohmann/x86_opcode_structure_and_instruction_overview.pdf)
-  (pdf; [cached local copy](https://github.com/akkartik/mu/blob/master/subx/cheatsheet.pdf))
+  (pdf; [cached local copy](https://github.com/akkartik/mu/blob/master/cheatsheet.pdf))
 * [Concise reference for the x86 ISA](https://c9x.me/x86)
 * [Intel processor manual](http://www.intel.com/content/dam/www/public/us/en/documents/manuals/64-ia-32-architectures-software-developer-instruction-set-reference-manual-325383.pdf) (pdf)
 - [&ldquo;Bootstrapping a compiler from nothing&rdquo;](http://web.archive.org/web/20061108010907/http://www.rano.org/bcompiler.html) by Edmund Grumley-Evans.