summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/HALKit/POWER/HalStartSequence.s
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Kernel/HALKit/POWER/HalStartSequence.s')
-rw-r--r--dev/Kernel/HALKit/POWER/HalStartSequence.s14
1 files changed, 14 insertions, 0 deletions
diff --git a/dev/Kernel/HALKit/POWER/HalStartSequence.s b/dev/Kernel/HALKit/POWER/HalStartSequence.s
new file mode 100644
index 00000000..68110f8d
--- /dev/null
+++ b/dev/Kernel/HALKit/POWER/HalStartSequence.s
@@ -0,0 +1,14 @@
+/* -------------------------------------------
+
+ Copyright ZKA Technologies.
+
+------------------------------------------- */
+
+.globl __ImageStart
+.extern hal_init_platform
+.align 4
+.text
+
+__ImageStart:
+ bl hal_init_platform
+ blr