summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/HALKit/POWER/HalStartSequence.s
blob: 194e220eb01a938d71af66fef12f8d9f655df67d (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