summaryrefslogtreecommitdiffhomepage
path: root/dev/Boot/Sources/HEL/AMD64/BootJump.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/AMD64/BootJump.S
parent005de79004c9d30e64bdee6e14e06f9d47d1f2ab (diff)
[REFACTOR]
Improved project structure. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Boot/Sources/HEL/AMD64/BootJump.S')
-rw-r--r--dev/Boot/Sources/HEL/AMD64/BootJump.S21
1 files changed, 0 insertions, 21 deletions
diff --git a/dev/Boot/Sources/HEL/AMD64/BootJump.S b/dev/Boot/Sources/HEL/AMD64/BootJump.S
deleted file mode 100644
index 7c2fcbc4..00000000
--- a/dev/Boot/Sources/HEL/AMD64/BootJump.S
+++ /dev/null
@@ -1,21 +0,0 @@
-.global rt_jump_to_address
-.text
-
-.text
-.intel_syntax noprefix
-
-/**
- @brief this function setups a stack and then jumps to
- a function */
-rt_jump_to_address:
- mov rsp, r8
-
- push rax
- push rdx
- mov rbx, rcx
- mov rcx, rdx
- jmp rbx
- pop rdx
- pop rax
-
- ret