13 lines
260 B
C
13 lines
260 B
C
#ifndef _KERNEL_AMD64_MSR_H
|
|
#define _KERNEL_AMD64_MSR_H
|
|
|
|
#include <libk/std.h>
|
|
|
|
#define MSR_FS_BASE 0xC0000100
|
|
#define MSR_GS_BASE 0xC0000101
|
|
|
|
uint64_t amd64_rdmsr (uint32_t msr);
|
|
void amd64_wrmsr (uint32_t msr, uint64_t value);
|
|
|
|
#endif // _KERNEL_AMD64_MSR_H
|