windows-nt/Source/XPSP1/NT/base/boot/lib/i386/amd64_stub.c

62 lines
552 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*++
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;
}