summaryrefslogtreecommitdiffhomepage
path: root/dev/zba/src/Thread.cxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-10-12 19:20:29 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-10-12 19:20:29 +0200
commitc7b637d7b68d9b7e271e70a5a5cc0c4fcf9172de (patch)
tree2d297a7250978efa7a81e101232f62254892f94b /dev/zba/src/Thread.cxx
parent3347073aaa031b71e5063192f0806d83e9021c34 (diff)
IMP: Porting stack to AARCH64.
- Bootloader and kernel were made to be ported to mulitple platforms. - Some part of the stack have to be written specifically for the platform though. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/zba/src/Thread.cxx')
-rw-r--r--dev/zba/src/Thread.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/dev/zba/src/Thread.cxx b/dev/zba/src/Thread.cxx
index b19894a9..2383d675 100644
--- a/dev/zba/src/Thread.cxx
+++ b/dev/zba/src/Thread.cxx
@@ -15,14 +15,6 @@
#include <CFKit/LoaderUtils.hxx>
#include <modules/FB/Text.hxx>
-EXTERN_C
-{
-#include <string.h>
-
- Void
- rt_jump_to_address(VoidPtr start, VoidPtr handover);
-}
-
// External boot services symbol.
EXTERN EfiBootServices* BS;
@@ -161,8 +153,6 @@ namespace Boot
err_fn(handover);
}
- rt_jump_to_address(fStartAddress, handover);
-
reinterpret_cast<HEL::HandoverProc>(fStartAddress)(handover);
}