mirror of
https://gitlab.os-k.eu/os-k-team/os-k.git
synced 2023-08-25 14:03:10 +02:00
25 lines
335 B
NASM
25 lines
335 B
NASM
|
|
||
|
global MmEnableWriteProtect
|
||
|
global MmDisableWriteProtect
|
||
|
global MmLoadPML4
|
||
|
|
||
|
MmEnableWriteProtect:
|
||
|
push rax
|
||
|
mov rax, cr0
|
||
|
or rax, 1<<16
|
||
|
mov cr0, rax
|
||
|
pop rax
|
||
|
ret
|
||
|
|
||
|
MmDisableWriteProtect:
|
||
|
push rax
|
||
|
mov rax, cr0
|
||
|
and rax, ~(1<<16)
|
||
|
mov cr0, rax
|
||
|
pop rax
|
||
|
ret
|
||
|
|
||
|
MmLoadPML4:
|
||
|
mov cr3, rsi
|
||
|
ret
|