about summary refs log tree commit diff stats
path: root/baremetal/mu-init.subx
blob: 77e62ede755e19656c7596b14c03676f569bb2e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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
# no heap yet
#
# 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-screen)
  (main)
}

# hang indefinitely
{
  eb/jump loop/disp8
}