about summary refs log tree commit diff stats
path: root/x86_approx.md
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-10-04 01:33:49 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-04 01:33:49 -0700
commit0371140abecec1b3902ed58282cfb5ea0fcd2f69 (patch)
tree4613d28069c6651448bed6cd7501ea5b83f6676e /x86_approx.md
parent21ff6d831aaa59f12f977c2bf93730c39d301bc3 (diff)
downloadmu-0371140abecec1b3902ed58282cfb5ea0fcd2f69.tar.gz
6945
Diffstat (limited to 'x86_approx.md')
-rw-r--r--x86_approx.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/x86_approx.md b/x86_approx.md
index d26f1bdd..a0512d60 100644
--- a/x86_approx.md
+++ b/x86_approx.md
@@ -23,9 +23,9 @@ It gives different results when emulated and run natively:
   ```
   $ ./translate_mu_debug x.mu  # debug mode = error checking
   $ ./bootstrap run a.elf
-  0x3f000000
+  0x3f000000  # correct
   $ ./a.elf
-  0x3efff000
+  0x3efff000  # wrong
   ```
 
 I spent some time digging into this before I realized it wasn't a bug in Mu,