summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/Ia32
diff options
context:
space:
mode:
authorJordan Justen <jordan.l.justen@intel.com>2016-05-30 18:51:59 -0700
committerLiming Gao <liming.gao@intel.com>2016-06-28 09:49:23 +0800
commitf8e49a6adda4d3dedc379ab0e953cc2c384faee4 (patch)
treeb5caf051a272767310dfdbb6c9dea75077354457 /MdePkg/Library/BaseLib/Ia32
parent3357f0838fa8245310a70c62ed5449ca48b17476 (diff)
downloadedk2-f8e49a6adda4d3dedc379ab0e953cc2c384faee4.zip
edk2-f8e49a6adda4d3dedc379ab0e953cc2c384faee4.tar.gz
edk2-f8e49a6adda4d3dedc379ab0e953cc2c384faee4.tar.bz2
MdePkg BaseLib: Convert Ia32/CpuBreakpoint.asm to NASM
The BaseTools/Scripts/ConvertMasmToNasm.py script was used to convert Ia32/CpuBreakpoint.asm to Ia32/CpuBreakpoint.nasm Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32')
-rw-r--r--MdePkg/Library/BaseLib/Ia32/CpuBreakpoint.nasm36
1 files changed, 36 insertions, 0 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/CpuBreakpoint.nasm b/MdePkg/Library/BaseLib/Ia32/CpuBreakpoint.nasm
new file mode 100644
index 0000000..fb1dd2e
--- /dev/null
+++ b/MdePkg/Library/BaseLib/Ia32/CpuBreakpoint.nasm
@@ -0,0 +1,36 @@
+;------------------------------------------------------------------------------ ;
+; Copyright (c) 2006, 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.
+;
+; Module Name:
+;
+; CpuBreakpoint.Asm
+;
+; Abstract:
+;
+; CpuBreakpoint function
+;
+; Notes:
+;
+;------------------------------------------------------------------------------
+
+ SECTION .text
+
+;------------------------------------------------------------------------------
+; VOID
+; EFIAPI
+; CpuBreakpoint (
+; VOID
+; );
+;------------------------------------------------------------------------------
+global ASM_PFX(_CpuBreakpoint)
+ASM_PFX(_CpuBreakpoint):
+ int 3
+ ret
+