I want check that CPU have support PSE. I found in Intel doc that PSE is on BIT 3 in EDX
Register.
I have code for PAE:
pae:
mov eax,1
cpuid
test EDX, 000000020h
jnz is_pae
jmp name
In Intel doc is that PAE is on BIT 6 in EDX
Register. Why in code is 000000020h and what value use to check PSE.