mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-30 08:17:58 +00:00
15 lines
234 B
C++
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()
|
|
{
|
|
}
|