From da70596895d8135e08f8caac6978117697b4c021 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 18 Aug 2024 21:39:29 +0200 Subject: [REFACTOR] Improved project structure. Signed-off-by: Amlal El Mahrouss --- dev/Boot/Sources/HEL/AMD64/BootJump.S | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 dev/Boot/Sources/HEL/AMD64/BootJump.S (limited to 'dev/Boot/Sources/HEL/AMD64/BootJump.S') 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 -- cgit v1.2.3