mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-27 15:04:31 +00:00
14 lines
191 B
C++
14 lines
191 B
C++
#include <syscalls.hpp>
|
|
|
|
#include <cpu.hpp>
|
|
|
|
#include "cpu/gdt.hpp"
|
|
|
|
using namespace CPU::x32;
|
|
|
|
extern "C" uint32_t SystemCallsHandler(SyscallsFrame *regs);
|
|
|
|
void InitializeSystemCalls()
|
|
{
|
|
}
|