summaryrefslogtreecommitdiffhomepage
path: root/dev
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-08-25 10:30:53 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-08-25 10:30:53 +0200
commitb38d3345dd46b474cfda05fe34188910623f4f7c (patch)
tree06383361544fbe3054b700ae26beb017aa46f013 /dev
parent328b34360ab8b2462ea5858441693277b3d23f08 (diff)
fix: ddk: urgent fixes.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev')
-rw-r--r--dev/libDDK/src/ddk_kernel_call_dispatch.S8
1 files changed, 5 insertions, 3 deletions
diff --git a/dev/libDDK/src/ddk_kernel_call_dispatch.S b/dev/libDDK/src/ddk_kernel_call_dispatch.S
index 05ee8209..808aa11a 100644
--- a/dev/libDDK/src/ddk_kernel_call_dispatch.S
+++ b/dev/libDDK/src/ddk_kernel_call_dispatch.S
@@ -12,14 +12,16 @@
#if defined(__DDK_AMD64__)
+ .intel_syntax noprefix
+
/* args rcx, rdx, r8, r9 */
__ke_call_dispatch:
- pushq rbp
- movq rbp, rsp
+ push rbp
+ mov rbp, rsp
syscall
- popq rbp
+ pop rbp
ret