diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-05-16 22:02:28 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-05-16 22:02:28 -0700 |
commit | c5a16a484dc6216532304555a5ba87196e11c29e (patch) | |
tree | 250b57fa61063e6a7bbed53ee4b98c4aaa8eb20b | |
parent | fb0f0748bcb7e6d24b87b4d3fc45aa7410c641e0 (diff) | |
download | mu-c5a16a484dc6216532304555a5ba87196e11c29e.tar.gz |
.
-rw-r--r-- | hest-life.mu | 6 |
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 { |