about summary refs log tree commit diff stats
path: root/mu-init.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-11-15 23:51:40 -0800
committerKartik Agaram <vc@akkartik.com>2020-11-16 00:00:32 -0800
commit8d2dece2918675f4c7159b36a5cf154ff1ccd7f5 (patch)
treecc0c5ed66bca089d76ce9a7a43b7fc145f8dfecc /mu-init.subx
parent264aba4d929da6899af0672fcda7cc7a877099ec (diff)
downloadmu-8d2dece2918675f4c7159b36a5cf154ff1ccd7f5.tar.gz
7250
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 f20d08d0..feab920f 100644
--- a/mu-init.subx
+++ b/mu-init.subx
@@ -3,9 +3,9 @@
 # See translate_mu for how this file is used.
 #
 # Mu programs start at a function called 'main' with this signature:
-#   fn main args: (addr array addr array byte) -> exit-status/ebx: int
+#   fn main args: (addr array addr array byte) -> _/ebx: int
 # If your program doesn't need commandline arguments you can drop it:
-#   fn main -> exit-status/ebx: int
+#   fn main -> _/ebx: int
 #
 # Notice that the output must be in ebx, so that the exit() syscall can pick
 # it up.