26 lines
1.0 KiB
C
26 lines
1.0 KiB
C
/** @file
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2014, Insyde Software Corp. All Rights Reserved.
|
|
;*
|
|
;* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
;* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
;* any part of this publication in any form, by any means, without the prior
|
|
;* written permission of Insyde Software Corporation.
|
|
;*
|
|
;******************************************************************************
|
|
*/
|
|
|
|
#ifndef _CHIPSET_INIT_INC_H_
|
|
#define _CHIPSET_INIT_INC_H_
|
|
#include <Guid/MtrrDataInfo.h>
|
|
|
|
#define MEM_EQU_256MB 0x10000000
|
|
#define MEM_EQU_1GB 0x40000000
|
|
#define MEM_EQU_4GB 0x100000000
|
|
#define MEM_EQU_8GB 0x200000000
|
|
#define MEM_EQU_12GB 0x300000000
|
|
#define MEM_EQU_16GB 0x400000000
|
|
#define MEM_EQU_32GB 0x800000000
|
|
#endif
|