aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/kernel
diff options
context:
space:
mode:
authorMatteo Gmür <matteo.gmuer1@ost.ch>2025-05-03 07:24:55 +0000
committerMatteo Gmür <matteo.gmuer1@ost.ch>2025-05-03 07:24:55 +0000
commit4b8674bee6089aef1e2c6b9064c6109f1cd392da (patch)
treef518a74c43986c7807d78628421ad278579b0aad /arch/x86_64/src/kernel
parent099a7fbbc35a71f98553fa39899f2d17c555242f (diff)
downloadteachos-4b8674bee6089aef1e2c6b9064c6109f1cd392da.tar.xz
teachos-4b8674bee6089aef1e2c6b9064c6109f1cd392da.zip
Remove zomby code and fix 32-bit compability crash
Diffstat (limited to 'arch/x86_64/src/kernel')
-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