feat(scheduler): working scheduler
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
#pragma once
|
||||
#include <Types.h>
|
||||
#include <Arch/Exceptions.h>
|
||||
|
||||
static const UInt64 kTimerFrequency = 1000; // 1ms
|
||||
static const UInt8 kTimerIRQ = 27;
|
||||
|
||||
void TimerInitialize();
|
||||
void TimerReset(UInt64 interval);
|
||||
void TimerReset(UInt64 interval);
|
||||
Address TimerHandler(ExceptionsContext* frame);
|
||||
UInt64 TimerGetCounter();
|
||||
Reference in New Issue
Block a user