From 1fabb209db4ee826ce88a353dc6003b64d5fe9d6 Mon Sep 17 00:00:00 2001 From: midipix Date: Wed, 27 May 2015 21:00:01 -0400 Subject: adjust arch-specific files to match musl version 1.1.9. --- src/ldso/nt64/dlstart.s | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/ldso/nt64/dlstart.s (limited to 'src/ldso/nt64/dlstart.s') diff --git a/src/ldso/nt64/dlstart.s b/src/ldso/nt64/dlstart.s new file mode 100644 index 0000000..e710319 --- /dev/null +++ b/src/ldso/nt64/dlstart.s @@ -0,0 +1,21 @@ +# standard dynamic loader is not required +# optional dynamic loader [to be] provided by libldso/libpsxscl + +.section .data + +.globl __init_array_start +.globl __init_array_end +.globl __fini_array_start +.globl __fini_array_end + +__init_array_start: + .quad 0 + +__init_array_end: + .quad 0 + +__fini_array_start: + .quad 0 + +__fini_array_end: + .quad 0 -- cgit v1.2.3