mirror of https://github.com/tongzx/nt5src
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
61 lines
552 B
/*++
|
|
|
|
Copyright (c) 1991-2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
amd64.c
|
|
|
|
Abstract:
|
|
|
|
This module contains stub functions to support the AMD64 processor.
|
|
|
|
Author:
|
|
|
|
Forrest Foltz (forrestf) 20-Apr-2000
|
|
|
|
Environment:
|
|
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include "amd64bl.h"
|
|
|
|
BOOLEAN
|
|
BlDetectAmd64(
|
|
VOID
|
|
)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
ARC_STATUS
|
|
BlPrepareAmd64Phase1(
|
|
VOID
|
|
)
|
|
{
|
|
return ESUCCESS;
|
|
}
|
|
|
|
ARC_STATUS
|
|
BlPrepareAmd64Phase2(
|
|
VOID
|
|
)
|
|
{
|
|
return ESUCCESS;
|
|
}
|
|
|
|
VOID
|
|
BlEnableAmd64LongMode(
|
|
VOID
|
|
)
|
|
{
|
|
NOTHING;
|
|
}
|
|
|
|
|
|
|
|
|
|
|