diff options
Diffstat (limited to 'crt/powerpc/crti.s')
-rw-r--r-- | crt/powerpc/crti.s | 15 |
1 files changed, 15 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) |