Added syscalls stub

This commit is contained in:
Alex
2022-10-12 04:34:37 +03:00
parent 127476ac64
commit a2da69d777
7 changed files with 94 additions and 1 deletions

View File

@ -0,0 +1,13 @@
#include <syscalls.hpp>
#include <cpu.hpp>
#include "cpu/gdt.hpp"
using namespace CPU::x32;
extern "C" uint32_t SystemCallsHandler(SyscallsRegs *regs);
void InitializeSystemCalls()
{
}