Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
890 B

  1. ;*** prot386.inc - 386 protect mode structures, records, and masks.
  2. ;
  3. ; Copyright <C> 1990-1991, Microsoft Corporation
  4. ;
  5. ; Purpose:
  6. ;
  7. ; Revision History:
  8. ;
  9. ; [] 20-Feb-1990 Dans Created
  10. ;
  11. ;************************************************************************/
  12. ;
  13. ; page table entry record
  14. ;
  15. PTEAltr record \
  16. pfaPTEA:20, \
  17. availPTEA:3, \
  18. unusedPTEA:2, \
  19. dirtyPTEA:1, \
  20. accessedPTEA:1, \
  21. pcdPTEA:1, \
  22. pwtPTEA:1, \
  23. usersuperPTEA:1, \
  24. readwritePTEA:1, \
  25. presentPTEA:1
  26. PTEr record \
  27. pfaPTE:20, \
  28. allbitsPTE:12
  29. ;
  30. ; New page table entry mask
  31. ;
  32. NEWPTEMASK = mask presentPTEA OR \
  33. mask readwritePTEA OR \
  34. mask usersuperPTEA