summaryrefslogtreecommitdiff
path: root/crti.s
diff options
context:
space:
mode:
Diffstat (limited to 'crti.s')
-rw-r--r--crti.s11
1 files changed, 11 insertions, 0 deletions
diff --git a/crti.s b/crti.s
new file mode 100644
index 0000000..6ea6167
--- /dev/null
+++ b/crti.s
@@ -0,0 +1,11 @@
+ .seg ".init"
+ .globl _init
+ .type _init,#function
+_init:
+ save %sp,-96,%sp
+
+ .seg ".fini"
+ .globl _fini
+ .type _fini,#function
+_fini:
+ save %sp,-96,%sp