about summary refs log tree commit diff stats
path: root/apps/tile.mu
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tile.mu')
-rw-r--r--apps/tile.mu7
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/tile.mu b/apps/tile.mu
index c7067e83..6ac49d39 100644
--- a/apps/tile.mu
+++ b/apps/tile.mu
@@ -308,10 +308,3 @@ fn render-tile-without-margin screen: (addr screen), _tile: (addr tile), start-x
     loop
   }
 }
-
-fn remainder a: int, b: int -> _/eax: int {
-  var q/eax: int <- copy 0
-  var r/edx: int <- copy 0
-  q, r <- integer-divide a, b
-  return r
-}