about summary refs log tree commit diff stats
path: root/apps
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-07-28 22:57:20 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-07-28 22:57:20 -0700
commit9f52758dfe26b84ac9636b07d77e11360aafe452 (patch)
tree805093861a83227ab1440b852eb5b56be7bee79f /apps
parent04134396a353559b6bd6d0e73e23ddcdd160d20b (diff)
downloadmu-9f52758dfe26b84ac9636b07d77e11360aafe452.tar.gz
.
Diffstat (limited to 'apps')
-rw-r--r--apps/color-game.mu11
1 files changed, 0 insertions, 11 deletions
diff --git a/apps/color-game.mu b/apps/color-game.mu
index 086863cc..f7682036 100644
--- a/apps/color-game.mu
+++ b/apps/color-game.mu
@@ -61,14 +61,3 @@ fn color-field screen: (addr screen), xmin: int, ymin: int, width: int, height:
     loop
   }
 }
-
-fn linger {
-  var i/ecx: int <- copy 0
-  {
-    compare i, 0x40000000  # Kartik's Linux with -accel kvm
-#?     compare i, 0x8000000  # Kartik's Mac with -accel tcg
-    break-if->=
-    i <- increment
-    loop
-  }
-}