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.

61 lines
552 B

  1. /*++
  2. Copyright (c) 1991-2000 Microsoft Corporation
  3. Module Name:
  4. amd64.c
  5. Abstract:
  6. This module contains stub functions to support the AMD64 processor.
  7. Author:
  8. Forrest Foltz (forrestf) 20-Apr-2000
  9. Environment:
  10. Revision History:
  11. --*/
  12. #include "amd64bl.h"
  13. BOOLEAN
  14. BlDetectAmd64(
  15. VOID
  16. )
  17. {
  18. return FALSE;
  19. }
  20. ARC_STATUS
  21. BlPrepareAmd64Phase1(
  22. VOID
  23. )
  24. {
  25. return ESUCCESS;
  26. }
  27. ARC_STATUS
  28. BlPrepareAmd64Phase2(
  29. VOID
  30. )
  31. {
  32. return ESUCCESS;
  33. }
  34. VOID
  35. BlEnableAmd64LongMode(
  36. VOID
  37. )
  38. {
  39. NOTHING;
  40. }