diff options
author | Guo Mang <mang.guo@intel.com> | 2017-04-27 11:22:26 +0800 |
---|---|---|
committer | Guo Mang <mang.guo@intel.com> | 2017-04-27 11:22:26 +0800 |
commit | 38c2cbb9354d7f58e48f9f649f23eb9bd0d3cfca (patch) | |
tree | 1d4540cd9c19c47d10a161184c8f1a12f8ffc455 /Core/UefiCpuPkg/ResetVector/Vtf0/DebugDisabled.asm | |
parent | c6ff7c547bfc71da9d5e71a73984b9d3a4ea0809 (diff) | |
download | edk2-platforms-38c2cbb9354d7f58e48f9f649f23eb9bd0d3cfca.tar.xz |
UefiCpuPkg: Move to new location
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Guo Mang <mang.guo@intel.com>
Diffstat (limited to 'Core/UefiCpuPkg/ResetVector/Vtf0/DebugDisabled.asm')
-rw-r--r-- | Core/UefiCpuPkg/ResetVector/Vtf0/DebugDisabled.asm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Core/UefiCpuPkg/ResetVector/Vtf0/DebugDisabled.asm b/Core/UefiCpuPkg/ResetVector/Vtf0/DebugDisabled.asm new file mode 100644 index 0000000000..883cef03e0 --- /dev/null +++ b/Core/UefiCpuPkg/ResetVector/Vtf0/DebugDisabled.asm @@ -0,0 +1,26 @@ +;------------------------------------------------------------------------------
+; @file
+; Debug disabled
+;
+; Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>
+; This program and the accompanying materials
+; are licensed and made available under the terms and conditions of the BSD License
+; which accompanies this distribution. The full text of the license may be found at
+; http://opensource.org/licenses/bsd-license.php
+;
+; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+;
+;------------------------------------------------------------------------------
+
+BITS 16
+
+%macro debugInitialize 0
+ ;
+ ; No initialization is required
+ ;
+%endmacro
+
+%macro debugShowPostCode 1
+%endmacro
+
|