Update files

This commit is contained in:
Alex
2022-10-10 23:31:46 +03:00
parent 4b6683823f
commit 32a17c5e63
20 changed files with 21 additions and 21 deletions

View File

@ -1,11 +1,11 @@
#include <interrupts.hpp>
#if defined(__amd64__)
#include "../arch/amd64/cpu/gdt.hpp"
#include "../arch/amd64/cpu/idt.hpp"
#include "../Architecture/amd64/cpu/gdt.hpp"
#include "../Architecture/amd64/cpu/idt.hpp"
#elif defined(__i386__)
#include "../arch/i686/cpu/gdt.hpp"
#include "../arch/i686/cpu/idt.hpp"
#include "../Architecture/i686/cpu/gdt.hpp"
#include "../Architecture/i686/cpu/idt.hpp"
#elif defined(__aarch64__)
#endif

View File

@ -5,7 +5,7 @@
#include <debug.h>
#if defined(__amd64__)
#include "../arch/amd64/acpi.hpp"
#include "../Architecture/amd64/acpi.hpp"
namespace Power
{

View File

@ -19,4 +19,4 @@ It is responsible for printing text to the screen.
Contains the CPU management code.
It is responsible for initializing the GDT and IDT.
More code related is in the `arch` directory.
More code related is in the `Architecture` directory.