Added SMP support

This commit is contained in:
Alex
2022-10-12 03:55:58 +03:00
parent 703de2c284
commit 127476ac64
7 changed files with 159 additions and 8 deletions

View File

@ -16,12 +16,12 @@
namespace Interrupts
{
#if defined(__amd64__)
APIC::APIC *apic = nullptr;
/* APIC::APIC */ void *apic = nullptr;
#elif defined(__i386__)
#elif defined(__aarch64__)
#endif
void Initialize()
void Initialize(int Core)
{
#if defined(__amd64__)
GlobalDescriptorTable::Init(0);