Restructering Kernel folder before moving to higher half kernel

The boot up process will be changed somewhat dramatically, therefor a
restructering of the kernel seems as a good starting point.
This commit is contained in:
2022-08-17 14:29:26 +02:00
parent 0b0e37b762
commit 3b3e2597a1
39 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#pragma once
#include <stdint.h>
#include "io.h"
#define PIT_DATA_0 0x40
#define PIT_DATA_1 0x41
#define PIT_DATA_2 0x42
#define PIT_COMMAND 0x43
extern uint32_t pit_tick;
void pit_initialise();
void get_pit_count();
void set_pit_count();