diff options
Diffstat (limited to 'crt/powerpc/crtn.s')
-rw-r--r-- | crt/powerpc/crtn.s | 13 |
1 files changed, 13 insertions, 0 deletions
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 |