summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/HALKit/POWER/HalStartSequence.s
blob: 0bd99f6b5c4f83d9048617093a1cf371348fe304 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* -------------------------------------------

    Copyright (C) 2024, t& Corporation, all rights reserved.

------------------------------------------- */

.globl __ImageStart
.extern hal_init_platform
.align 4
.text

__ImageStart:
	bl hal_init_platform
	blr