APIC, HPET, virtual memory

This commit is contained in:
2025-12-22 19:36:43 +01:00
parent 741d0fb9b0
commit 7b33d0757a
13 changed files with 495 additions and 3 deletions

9
kernel/amd64/msr.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef _KERNEL_AMD64_MSR_H
#define _KERNEL_AMD64_MSR_H
#include <libk/std.h>
uint64_t amd64_rdmsr (uint32_t msr);
void amd64_wrmsr (uint32_t msr, uint64_t value);
#endif // _KERNEL_AMD64_MSR_H