diff options
Diffstat (limited to 'libc-top-half/musl/crt/or1k/crtn.s')
-rw-r--r-- | libc-top-half/musl/crt/or1k/crtn.s | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libc-top-half/musl/crt/or1k/crtn.s b/libc-top-half/musl/crt/or1k/crtn.s new file mode 100644 index 0000000..4185a02 --- /dev/null +++ b/libc-top-half/musl/crt/or1k/crtn.s @@ -0,0 +1,9 @@ +.section .init + l.lwz r9,0(r1) + l.jr r9 + l.addi r1,r1,4 + +.section .fini + l.lwz r9,0(r1) + l.jr r9 + l.addi r1,r1,4 |