summaryrefslogtreecommitdiffstats
path: root/bsps/powerpc/shared/start/rtems_crtn.S
blob: 70b60f68ff5b7fd8e649d0bcfba21c10b2210b4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (c) 2017 embedded brains GmbH.  All rights reserved.
 *
 * 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