Write test for downloading a mostly random program
[riscv-isa-sim.git] / tests / start.S
1 .global _start
2
3 _start:
4 la sp, stack_end
5 jal main
6 done:
7 j done
8
9 .data
10 stack:
11 .fill 4096, 1, 0
12 stack_end: