1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:08:12 +00:00

Kernel: Move i8253.cpp => Arch/i386/PIT.cpp

This commit is contained in:
Andreas Kling 2019-07-09 14:23:12 +02:00
parent 9fdcede491
commit 6c87d3afa9
6 changed files with 5 additions and 5 deletions

View file

@ -2,11 +2,11 @@
#include "Process.h"
#include "RTC.h"
#include "Scheduler.h"
#include "i8253.h"
#include "kmalloc.h"
#include <AK/Types.h>
#include <Kernel/Arch/i386/CPU.h>
#include <Kernel/Arch/i386/PIC.h>
#include <Kernel/Arch/i386/PIT.h>
#include <Kernel/Devices/BXVGADevice.h>
#include <Kernel/Devices/DebugLogDevice.h>
#include <Kernel/Devices/DiskPartition.h>