aboutsummaryrefslogtreecommitdiff
path: root/tests/start.S
blob: 76c37bbd9ecff62d1b6eabd27d66938d9918a0e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
        .global         _start

_start:
        la      sp, stack_end
        jal     main
done:
        j       done

        .data
stack:
        .fill   4096, 1, 0
stack_end: