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.subx36
1 files changed, 18 insertions, 18 deletions
diff --git a/mu-init.subx b/mu-init.subx
index 20eefbde..bf9e5b0d 100644
--- a/mu-init.subx
+++ b/mu-init.subx
@@ -8,22 +8,22 @@
 == code
 
 Entry:
-# initialize stack
-bd/copy-to-ebp 0/imm32
-# always first run tests
-(run-tests)
-(num-test-failures)  # => eax
-# call main if tests all passed
-{
-  3d/compare-eax-and 0/imm32
-  75/jump-if-!= break/disp8
-  (clear-real-screen)
-  c7 0/subop/copy *Real-screen-cursor-x 0/imm32
-  c7 0/subop/copy *Real-screen-cursor-y 0/imm32
-  (main)
-}
+  # initialize stack
+  bd/copy-to-ebp 0/imm32
+  # always first run tests
+  (run-tests)
+  (num-test-failures)  # => eax
+  # call main if tests all passed
+  {
+    3d/compare-eax-and 0/imm32
+    75/jump-if-!= break/disp8
+    (clear-real-screen)
+    c7 0/subop/copy *Real-screen-cursor-x 0/imm32
+    c7 0/subop/copy *Real-screen-cursor-y 0/imm32
+    (main)
+  }
 
-# hang indefinitely
-{
-  eb/jump loop/disp8
-}
+  # hang indefinitely
+  {
+    eb/jump loop/disp8
+  }