about summary refs log tree commit diff stats
path: root/baremetal/502test.mu
diff options
context:
space:
mode:
Diffstat (limited to 'baremetal/502test.mu')
-rw-r--r--baremetal/502test.mu3
1 files changed, 3 insertions, 0 deletions
diff --git a/baremetal/502test.mu b/baremetal/502test.mu
index 89d9b0e9..00d55d34 100644
--- a/baremetal/502test.mu
+++ b/baremetal/502test.mu
@@ -8,6 +8,7 @@ fn check-ints-equal _a: int, b: int, msg: (addr array byte) {
     return
   }
   draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, msg, 3/fg/cyan, 0/bg
+  move-cursor-to-start-of-next-line 0/screen
   count-test-failure
 }
 
@@ -24,6 +25,7 @@ fn check _a: boolean, msg: (addr array byte) {
     return
   }
   draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, msg, 3/fg/cyan, 0/bg
+  move-cursor-to-start-of-next-line 0/screen
   count-test-failure
 }
 
@@ -36,5 +38,6 @@ fn check-not _a: boolean, msg: (addr array byte) {
     return
   }
   draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, msg, 3/fg/cyan, 0/bg
+  move-cursor-to-start-of-next-line 0/screen
   count-test-failure
 }