summaryrefslogtreecommitdiffhomepage
path: root/src/ldso/nt64/start.s
blob: e710319ac803a93a85fbd957487853ee686bf064 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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