about summary refs log tree commit diff stats
path: root/mu-init.subx
diff options
context:
space:
mode:
Diffstat (limited to 'mu-init.subx')
-rw-r--r--mu-init.subx4
1 files changed, 2 insertions, 2 deletions
diff --git a/mu-init.subx b/mu-init.subx
index 399a9a3f..08a8856e 100644
--- a/mu-init.subx
+++ b/mu-init.subx
@@ -3,7 +3,7 @@
 # See translate for how this file is used.
 #
 # Mu programs start at a function called 'main' with this signature:
-#   fn main screen: (addr screen), keyboard: (addr keyboard)
+#   fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk)
 #
 # All tests must pass first (the "power-on unit test").
 
@@ -22,7 +22,7 @@ Entry:
     (clear-real-screen)
     c7 0/subop/copy *Real-screen-cursor-x 0/imm32
     c7 0/subop/copy *Real-screen-cursor-y 0/imm32
-    (main 0 0)
+    (main 0 0 Primary-bus-secondary-drive)
   }
 
   # hang indefinitely
3 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167