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: