Files
ksOS/Kernel/Include/Arch/Timer.h
T
karina 7fcb50587e feat: GICv2 and timer
fix: TimerReset in GIC.c now uses kTimerFrequency
2026-04-29 08:49:37 +04:00

8 lines
178 B
C

#pragma once
#include <Types.h>
static const UInt64 kTimerFrequency = 1000; // 1ms
static const UInt8 kTimerIRQ = 30;
void TimerInitialize();
void TimerReset(UInt64 interval);