about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-05-16 22:02:28 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-05-16 22:02:28 -0700
commitc5a16a484dc6216532304555a5ba87196e11c29e (patch)
tree250b57fa61063e6a7bbed53ee4b98c4aaa8eb20b
parentfb0f0748bcb7e6d24b87b4d3fc45aa7410c641e0 (diff)
downloadmu-c5a16a484dc6216532304555a5ba87196e11c29e.tar.gz
.
-rw-r--r--hest-life.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/hest-life.mu b/hest-life.mu
index 38d6d43e..cacb27b2 100644
--- a/hest-life.mu
+++ b/hest-life.mu
@@ -8,7 +8,7 @@
 #   $ qemu-system-i386 -enable-kvm code.img
 #
 # If things seem too fast or too slow on your computer, adjust the loop bounds
-# in the function `pause` at the bottom. Its value will depend on how you
+# in the function `linger` at the bottom. Its value will depend on how you
 # accelerate Qemu. Mu will eventually get a clock to obviate the need for this
 # tuning.
 
@@ -26,7 +26,7 @@ fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk)
       step env
       render screen, env
     }
-    pause env
+    linger env
     loop
   }
 }
@@ -272,7 +272,7 @@ fn edit keyboard: (addr keyboard), _self: (addr environment) {
   }
 }
 
-fn pause _self: (addr environment) {
+fn linger _self: (addr environment) {
   var self/esi: (addr environment) <- copy _self
   var i/ecx: int <- copy 0
   {
a> 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
135
136
137
138