Paging: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
→‎Enabling: Added information about enabling PSE
Change the or instruction to explicit bts
Line 69: Line 69:
mov eax, cr0
mov eax, cr0
or eax, 0x80000000
bts eax, 31
mov cr0, eax
mov cr0, eax


Line 75: Line 75:


mov eax, cr4
mov eax, cr4
or eax, 0x00000008
bts eax, 4
mov cr4, eax
mov cr4, eax