about summary refs log tree commit diff stats
path: root/mu-init.subx
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-04-18 23:26:38 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-04-18 23:26:38 -0700
commit5c5bca9df5508ebbd556718e0193654eb9f31380 (patch)
treedc48db7b7cae911bc249aa5fc464b86178860667 /mu-init.subx
parent53b56c67a96417a979188f000baa28d2fba7672c (diff)
downloadmu-5c5bca9df5508ebbd556718e0193654eb9f31380.tar.gz
re-enable tests
Disabled in commit 1354161a3, and then I forgot about them for a while.
Diffstat (limited to 'mu-init.subx')
-rw-r--r--mu-init.subx26
1 files changed, 13 insertions, 13 deletions
diff --git a/mu-init.subx b/mu-init.subx
index 749cf785..b60249ba 100644
--- a/mu-init.subx
+++ b/mu-init.subx
@@ -12,19 +12,19 @@
 Entry:
   # initialize stack
   bd/copy-to-ebp 0/imm32
-  (main 0 0 Primary-bus-secondary-drive)
-#?   # 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 0 0 Primary-bus-secondary-drive)
-#?   }
+#?   (main 0 0 Primary-bus-secondary-drive)
+  # 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 0 0 Primary-bus-secondary-drive)
+  }
 
   # hang indefinitely
   {