mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-06-03 02:07:57 +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
|