aboutsummaryrefslogtreecommitdiff
path: root/sys/arch/amd64
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r--sys/arch/amd64/amd64/syscall.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/syscall.c b/sys/arch/amd64/amd64/syscall.c
index 68235d5..b0abe7f 100644
--- a/sys/arch/amd64/amd64/syscall.c
+++ b/sys/arch/amd64/amd64/syscall.c
@@ -36,9 +36,10 @@ __syscall(struct trapframe *tf)
.code = tf->rax,
.arg0 = tf->rdi,
.arg1 = tf->rsi,
- .arg2 = tf->rcx,
- .arg3 = tf->r8,
+ .arg2 = tf->rdx,
+ .arg3 = tf->r10,
.arg4 = tf->r9,
+ .arg5 = tf->r8,
.sp = tf->rsp
};