summary refs log tree commit diff
path: root/execution.e
diff options
context:
space:
mode:
Diffstat (limited to 'execution.e')
-rw-r--r--execution.e14
1 files changed, 7 insertions, 7 deletions
diff --git a/execution.e b/execution.e
index c6b6254..20064af 100644
--- a/execution.e
+++ b/execution.e
@@ -251,13 +251,13 @@
   ~ and the kernel would trust us, but this gives us more options for
   ~ interoperating with other runtimes.
   ~
-  9 :rax mov-reg64-imm64                      ~ mmap()
-  log-requested-address :rdi mov-reg64-imm64  ~ address (very arbitrary)
-  log-size :rsi mov-reg64-imm64               ~ size (one meg)
-  0x07 :rdx mov-reg64-imm64                   ~ protection (read+write+exec)
-  0x22 :r10 mov-extrareg64-imm64              ~ flags (private+anonymous)
-  0 :r8 mov-extrareg64-imm64                  ~ file descriptor (ignored)
-  0 :r9 mov-extrareg64-imm64                  ~ offset (ignored)
+  9 :rax mov-reg64-imm64                      ~ : mmap()
+  log-requested-address :rdi mov-reg64-imm64  ~ : address (very arbitrary)
+  log-size :rsi mov-reg64-imm64               ~ : size (one meg)
+  0x07 :rdx mov-reg64-imm64                   ~ : protection (read+write+exec)
+  0x22 :r10 mov-extrareg64-imm64              ~ : flags (private+anonymous)
+  0 :r8 mov-extrareg64-imm64                  ~ : file descriptor (ignored)
+  0 :r9 mov-extrareg64-imm64                  ~ : offset (ignored)
   syscall
 
   ~   The return value of the system call is in rax, we'll use it in a sec.