From b38d3345dd46b474cfda05fe34188910623f4f7c Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 25 Aug 2025 10:30:53 +0200 Subject: fix: ddk: urgent fixes. Signed-off-by: Amlal El Mahrouss --- dev/libDDK/src/ddk_kernel_call_dispatch.S | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'dev') 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 -- cgit v1.2.3