about summary refs log tree commit diff stats
path: root/ex7.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-03-27 17:47:23 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-03-27 17:50:44 -0700
commit7bf8adb893dcc524c7f1bc5e8f984385c9138d7d (patch)
tree7ae60840d8cb0356cee7a76cfd3c15bb5de4e58c /ex7.mu
parent9818f1de981fe9206940cf89e9422388f8853cc2 (diff)
downloadmu-7bf8adb893dcc524c7f1bc5e8f984385c9138d7d.tar.gz
explicitly pass data disk to main
Diffstat (limited to 'ex7.mu')
-rw-r--r--ex7.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/ex7.mu b/ex7.mu
index 0b84d584..ea4bf6aa 100644
--- a/ex7.mu
+++ b/ex7.mu
@@ -10,7 +10,7 @@
 # Expected output: an interactive game a bit like "snakes". Try pressing h, j,
 # k, l.
 
-fn main screen: (addr screen), keyboard: (addr keyboard) {
+fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk) {
   var space/eax: grapheme <- copy 0x20
   set-cursor-position screen, 0, 0
   {