aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/kernel/cpu/call.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/src/kernel/cpu/call.cpp')
-rw-r--r--arch/x86_64/src/kernel/cpu/call.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86_64/src/kernel/cpu/call.cpp b/arch/x86_64/src/kernel/cpu/call.cpp
index 6564b76..98fa248 100644
--- a/arch/x86_64/src/kernel/cpu/call.cpp
+++ b/arch/x86_64/src/kernel/cpu/call.cpp
@@ -5,6 +5,5 @@ namespace teachos::arch::kernel::cpu
auto call(far_pointer pointer) -> void
{
asm volatile("rex64 lcall *%[input]" : /* no output from call */ : [input] "m"(pointer));
- // asm volatile("ljmp *%0" : : "m"(pointer));
}
} // namespace teachos::arch::kernel::cpu