summaryrefslogtreecommitdiffhomepage
path: root/dev/Boot/Sources/HEL/POWER/CoreBootStartup.S
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-18 21:39:29 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-18 21:39:29 +0200
commitda70596895d8135e08f8caac6978117697b4c021 (patch)
tree2516785b5434df8453687f05dc8dd877438901ab /dev/Boot/Sources/HEL/POWER/CoreBootStartup.S
parent005de79004c9d30e64bdee6e14e06f9d47d1f2ab (diff)
[REFACTOR]
Improved project structure. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Boot/Sources/HEL/POWER/CoreBootStartup.S')
-rw-r--r--dev/Boot/Sources/HEL/POWER/CoreBootStartup.S34
1 files changed, 0 insertions, 34 deletions
diff --git a/dev/Boot/Sources/HEL/POWER/CoreBootStartup.S b/dev/Boot/Sources/HEL/POWER/CoreBootStartup.S
deleted file mode 100644
index 502f415c..00000000
--- a/dev/Boot/Sources/HEL/POWER/CoreBootStartup.S
+++ /dev/null
@@ -1,34 +0,0 @@
-/* -------------------------------------------
-
- Copyright ZKA Technologies.
-
-------------------------------------------- */
-
-.section .boot_hdr
-.align 4
-
-/* NewBoot boot header begin */
-
-boot_hdr_mag:
- .ascii "CB"
-boot_hdr_name:
- // it has to match ten bytes.
- .asciz "newosldr\0\0"
-boot_hdr_ver:
- .word 0x104
-boot_hdr_proc:
- .long bootloader_start
-
-/* NewBoot boot header end */
-
-.extern bootloader_main
-.extern bootloader_stack
-
-.globl bootloader_start
-bootloader_start:
- mflr 4 /* real address of .Laddr */
- lwz 0,(bootloader_stack-bootloader_start)(4) /* stack address location */
- mr 1,0 /* use user defined stack */
-
- bl bootloader_main
- blr