Kernel/Architecture/aarch64/SystemCalls.cpp
2022-10-12 04:34:37 +03:00

15 lines
234 B
C++

#include <syscalls.hpp>
#include <cpu.hpp>
extern "C" __attribute__((naked, used, no_stack_protector)) void SystemCallHandlerStub()
{
}
extern "C" uint64_t SystemCallsHandler(SyscallsRegs *regs);
void InitializeSystemCalls()
{
}