diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-07-28 22:57:20 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-07-28 22:57:20 -0700 |
commit | 9f52758dfe26b84ac9636b07d77e11360aafe452 (patch) | |
tree | 805093861a83227ab1440b852eb5b56be7bee79f /apps | |
parent | 04134396a353559b6bd6d0e73e23ddcdd160d20b (diff) | |
download | mu-9f52758dfe26b84ac9636b07d77e11360aafe452.tar.gz |
.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/color-game.mu | 11 |
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 - } -} |