Adjust indentation for .globl directives.
[pintos-anon] / src / threads / start.S
1 # This module gets linked first, so that the kernel entry point
2 # is the very beginning of its binary image.  All we need to do is
3 # jump to the real entry point.
4
5 .globl start
6 start:  call main
7
8         # If main returns, spin.
9 1:      jmp 1b