From 8621867b0e4b38dedc8556e6c483e3575d776af0 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 31 Jan 2024 19:36:16 +0100 Subject: Kernel: Many improvements done to the kernel and it's HAL and protocols. Will implement BFileReader on next commit. Signed-off-by: Amlal El Mahrouss --- Private/HALKit/AMD64/CoreSyscallHandlerAMD64.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Private/HALKit/AMD64/CoreSyscallHandlerAMD64.cpp') diff --git a/Private/HALKit/AMD64/CoreSyscallHandlerAMD64.cpp b/Private/HALKit/AMD64/CoreSyscallHandlerAMD64.cpp index 119fe1b5..b41b8285 100644 --- a/Private/HALKit/AMD64/CoreSyscallHandlerAMD64.cpp +++ b/Private/HALKit/AMD64/CoreSyscallHandlerAMD64.cpp @@ -18,6 +18,6 @@ HCore::Array // NOTE: don't trust the user. extern "C" void rt_syscall_handle(HCore::HAL::StackFrame *stack) { for (HCore::SizeT index = 0UL; index < kMaxSyscalls; ++index) { - (kSyscalls[index].Leak().Leak())(stack->SID, stack); + (kSyscalls[index].Leak().Leak())(stack->R15, stack); } } -- cgit v1.2.3