about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--crt/powerpc/crti.s15
-rw-r--r--crt/powerpc/crtn.s13
2 files changed, 28 insertions, 0 deletions
diff --git a/crt/powerpc/crti.s b/crt/powerpc/crti.s
new file mode 100644
index 00000000..60461ca4
--- /dev/null
+++ b/crt/powerpc/crti.s
@@ -0,0 +1,15 @@
+.section .init
+.align 2
+.global _init
+_init:
+	stwu 1,-32(1)
+	mflr 0
+	stw 0,36(1)
+
+.section .fini
+.align 2
+.global _fini
+_fini:
+	stwu 1,-32(1)
+	mflr 0
+	stw 0,36(1)
diff --git a/crt/powerpc/crtn.s b/crt/powerpc/crtn.s
new file mode 100644
index 00000000..2d14a6f0
--- /dev/null
+++ b/crt/powerpc/crtn.s
@@ -0,0 +1,13 @@
+.section .init
+.align 2
+	lwz 0,36(1)
+	addi 1,1,32
+	mtlr 0
+	blr
+
+.section .fini
+.align 2
+	lwz 0,36(1)
+	addi 1,1,32
+	mtlr 0
+	blr