summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/qemuppc/start/start.S
blob: 90fdf1e5fa48b236b2d43efe94c723b5727899d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
        #.section ".text"
	.section .entry_point_section,"awx",@progbits
        .global _start

_start:
        lis   %r1,_stack@h
        ori   %r1,%r1,_stack@l
        li     %r3,8192
        mtmsr   %r3
        bl      cmain
	.size _start, . - _start
	
	.global __eabi
__eabi:
	blr
	.size __eabi, . - __eabi

	.section ".reset","ax"
_reset:
	b _start
	.size _reset, . - _reset