https://github.com/akkartik/mu/blob/main/mu-init.subx
 1 # Initialize the minimal runtime for Mu programs.
 2 #
 3 # See translate for how this file is used.
 4 #
 5 # Mu programs start at a function called 'main' with this signature:
 6 #   fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk)
 7 #
 8 # All tests must pass first (the "power-on unit test").
 9 
10 == code
11 
12 Entry:
13   # initialize stack
14   bd/copy-to-ebp 0/imm32
15 #?   (main 0 0 Primary-bus-secondary-drive)
16   # always first run tests
17   (run-tests)
18   (num-test-failures)  # => eax
19   # call main if tests all passed
20   {
21     3d/compare-eax-and 0/imm32
22     75/jump-if-!= break/disp8
23     (clear-real-screen)
24     c7 0/subop/copy *Real-screen-cursor-x 0/imm32
25     c7 0/subop/copy *Real-screen-cursor-y 0/imm32
26     (main 0 0 Primary-bus-secondary-drive)
27   }
28 
29   # hang indefinitely
30   {
31     eb/jump loop/disp8
32   }