summaryrefslogtreecommitdiff
path: root/crt/mips/crtn.s
diff options
context:
space:
mode:
Diffstat (limited to 'crt/mips/crtn.s')
-rw-r--r--crt/mips/crtn.s13
1 files changed, 13 insertions, 0 deletions
diff --git a/crt/mips/crtn.s b/crt/mips/crtn.s
new file mode 100644
index 00000000..506a04b7
--- /dev/null
+++ b/crt/mips/crtn.s
@@ -0,0 +1,13 @@
+.set noreorder
+
+.section .init
+ lw $gp,24($sp)
+ lw $ra,28($sp)
+ j $ra
+ addu $sp,$sp,32
+
+.section .fini
+ lw $gp,24($sp)
+ lw $ra,28($sp)
+ j $ra
+ addu $sp,$sp,32