summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/shared/start/rtems_crtn.S
blob: 747d83dbce88f3ec47759e376df376f52022b86b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * Copyright (c) 2017 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Dornierstr. 4
 *  82178 Puchheim
 *  Germany
 *  <rtems@embedded-brains.de>
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#if defined(__powerpc64__)
	.section ".init","ax"
	addi	1,1,96
	ld	0,16(1)
	mtlr	0
	blr

	.section ".fini","ax"
	addi	1,1,96
	ld	0,16(1)
	mtlr	0
	blr
#endif