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

    Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.

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

.globl __ImageStart
.extern hal_init_platform
.align 4
.text

__ImageStart:
	bl hal_init_platform
	blr