You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
182 B

.text
.global main
.type main, @function
main:
addi sp, sp, -16
sw ra, 8(sp)
sw s0, 0(sp)
li a0, 42
lw ra, 8(sp)
lw s0, 0(sp)
addi sp, sp, 16
ret
.size main, .-main