diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-05-16 17:40:04 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-05-16 17:40:04 -0700 |
commit | 27e9832211ed2aeb1f54c95cbd7da10f4dd424af (patch) | |
tree | d5fbffd803dfe08d4bf7b9d50b0c14e5cd13a296 | |
parent | 1ddc248b8f780b166ae29fe12f5cf4f4ede65e0b (diff) | |
download | mu-27e9832211ed2aeb1f54c95cbd7da10f4dd424af.tar.gz |
.
-rw-r--r-- | hest-life.mu | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/hest-life.mu b/hest-life.mu index da89e46f..2a13f314 100644 --- a/hest-life.mu +++ b/hest-life.mu @@ -4,8 +4,13 @@ # # To build: # $ ./translate life.mu -# To run: +# I run it on my 2.5GHz Linux laptop like this: # $ 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 +# accelerate Qemu. Mu will eventually get a clock to obviate the need for this +# tuning. fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) { var env-storage: environment |