mirror of
https://github.com/Fennix-Project/Lynx.git
synced 2025-05-25 22:14:44 +00:00
9 lines
139 B
NASM
9 lines
139 B
NASM
[bits 32]
|
|
section .text
|
|
global EnablePaging
|
|
EnablePaging:
|
|
mov ecx, cr0
|
|
or ecx, 0x80000000 ; Set PG in CR0
|
|
mov cr0, ecx
|
|
ret
|