about summary refs log blame commit diff stats
path: root/baremetal/mu-init.subx
blob: 0ed4f08550fa381aa5b13ff47dd83a94386291d8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                    






                               
                     

                                         

        




                    
# Initialize the minimal runtime for Mu programs.
#
# See translate_mu_baremetal for how this file is used.
#
# Mu baremetal programs start at a function called 'main' without inouts or outputs.

== code

# 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 *Default-next-x 0/imm32
  c7 0/subop/copy *Default-next-y 0/imm32
  (main)
}

# hang indefinitely
{
  eb/jump loop/disp8
}