home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / msj / v10n04 / wqa0495.exe / _GETCR3.ASM next >
Assembly Source File  |  1995-04-01  |  114b  |  11 lines

  1. .model large
  2. .386
  3. .code
  4. public __GETCR3
  5. __GETCR3:
  6.     mov        eax, cr3
  7.     mov        edx, eax
  8.     shr        edx, 16
  9.     retf
  10. end
  11.